summaryrefslogtreecommitdiff
path: root/.config/guix/vali.scm
diff options
context:
space:
mode:
authorbd <bdunahu@colostate.edu>2024-05-22 17:15:37 -0600
committerbd <bdunahu@colostate.edu>2024-05-22 17:15:37 -0600
commitbd26696ff9c92242e9d99d16a1ba68ed378c95d4 (patch)
treea1aea35a0e5688c6143ecd427d9dfb856b4e2ed7 /.config/guix/vali.scm
parent817fc10ea1bc4377e99c0f82dbc2e161179b0b3e (diff)
Remove %desktop-services, attempt to kill gdm for good
Diffstat (limited to '.config/guix/vali.scm')
-rw-r--r--.config/guix/vali.scm50
1 files changed, 25 insertions, 25 deletions
diff --git a/.config/guix/vali.scm b/.config/guix/vali.scm
index 8c24483..e2ff0be 100644
--- a/.config/guix/vali.scm
+++ b/.config/guix/vali.scm
@@ -15,37 +15,37 @@
#:use-module (shell)
#:use-module (ssh)
#:use-module (gpg)
- #:use-module (xmodmap)
+ #:use-module (xserver)
#:use-module (base))
(define system
(operating-system
- (inherit ymir)
- (host-name "vali")
+ (inherit ymir)
+ (host-name "vali")
- (mapped-devices (list (mapped-device
- (source (uuid "8d3ccf19-035a-4956-8ba7-7c00dfa3a02c"))
- (target "hidden")
- (type luks-device-mapping))))
+ (mapped-devices (list (mapped-device
+ (source (uuid "8d3ccf19-035a-4956-8ba7-7c00dfa3a02c"))
+ (target "hidden")
+ (type luks-device-mapping))))
- (file-systems (cons* (file-system
- (mount-point "/boot/efi")
- (device (uuid
- "8A13-7018"
- 'fat32))
- (type "vfat"))
- (file-system
- (mount-point "/home/bdunahu/Personal")
- (device "/dev/mapper/hidden")
- (type "ext4")
- (dependencies mapped-devices))
- (file-system
- (mount-point "/")
- (device (uuid
- "69a3593b-12bd-40ad-a932-007674a8cfe8"
- 'ext4))
- (type "ext4")) %base-file-systems))))
+ (file-systems (cons* (file-system
+ (mount-point "/boot/efi")
+ (device (uuid
+ "8A13-7018"
+ 'fat32))
+ (type "vfat"))
+ (file-system
+ (mount-point "/home/bdunahu/Personal")
+ (device "/dev/mapper/hidden")
+ (type "ext4")
+ (dependencies mapped-devices))
+ (file-system
+ (mount-point "/")
+ (device (uuid
+ "69a3593b-12bd-40ad-a932-007674a8cfe8"
+ 'ext4))
+ (type "ext4")) %base-file-systems))))
(define home
@@ -60,7 +60,7 @@
,@ssh-service
,@gpg-service
,@base-services
- ,@xmodmap-service))))
+ ,@xorg-services))))
(if (getenv "RUNNING_GUIX_HOME") home system)