summaryrefslogtreecommitdiff
path: root/.config/guix/graveyard/vali.scm
diff options
context:
space:
mode:
Diffstat (limited to '.config/guix/graveyard/vali.scm')
-rw-r--r--.config/guix/graveyard/vali.scm37
1 files changed, 20 insertions, 17 deletions
diff --git a/.config/guix/graveyard/vali.scm b/.config/guix/graveyard/vali.scm
index 5c34540..e5cf900 100644
--- a/.config/guix/graveyard/vali.scm
+++ b/.config/guix/graveyard/vali.scm
@@ -1,8 +1,3 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;; This configuration adapts the base-level 'ymir' ;;
-;; OS declaration for 'vali', a laptop. ;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
(define-module (vali)
#:use-module (gnu)
#:use-module (gnu home)
@@ -21,6 +16,11 @@
#:use-module (modules ymir)
#:use-module (modules pdf))
+;;; Commentary:
+;;;
+;;; vali is a laptop
+;;;
+;;; Code:
(define home
(home-environment
@@ -46,8 +46,8 @@
;; machine-specific packages
,@(list
- brightnessctl
- tlp)))
+ brightnessctl
+ tlp)))
(services
`(,@bd-base-system-services
@@ -63,19 +63,22 @@
(type luks-device-mapping))))
(file-systems (cons* (file-system
- (mount-point "/boot/efi")
- (device (uuid
+ (mount-point "/boot/efi")
+ (device (uuid
"8A13-7018"
'fat32))
- (type "vfat"))
+ (type "vfat"))
(file-system
- (mount-point "/home")
- (device "/dev/mapper/hidden")
- (type "ext4")
- (dependencies mapped-devices))
+ (mount-point "/home")
+ (device "/dev/mapper/hidden")
+ (type "ext4")
+ (dependencies mapped-devices))
(file-system
- (mount-point "/")
- (device (uuid
+ (mount-point "/")
+ (device (uuid
"69a3593b-12bd-40ad-a932-007674a8cfe8"
'ext4))
- (type "ext4")) %base-file-systems)))
+ (type "ext4")) %base-file-systems)))
+
+
+;;; vali.scm ends here