summaryrefslogtreecommitdiff
path: root/.config/guix/graveyard/vali.scm
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-01-19 15:39:59 -0700
committerbd <bdunahu@operationnull.com>2025-01-19 15:39:59 -0700
commit1aecf1bfcb5b135607732b20be58887b7fc9a5e8 (patch)
tree6a6938550b31a7faacf2acb90560abda1faeab62 /.config/guix/graveyard/vali.scm
parent5ced9532fa6c5ec80bc8ca850d7c5254bf51e729 (diff)
move dwm files to separate directory
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