.
This commit is contained in:
parent
49b9fd0dc9
commit
d9f5dad995
1 changed files with 10 additions and 6 deletions
16
config.scm
16
config.scm
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
(use-modules
|
(use-modules
|
||||||
(gnu)
|
(gnu)
|
||||||
(gnu build file-systems)
|
|
||||||
(gnu image)
|
(gnu image)
|
||||||
(gnu services authentication)
|
(gnu services authentication)
|
||||||
(gnu services avahi)
|
(gnu services avahi)
|
||||||
|
@ -33,7 +32,8 @@
|
||||||
(timezone "Europe/Berlin")
|
(timezone "Europe/Berlin")
|
||||||
(locale "de_DE.utf8")
|
(locale "de_DE.utf8")
|
||||||
(keyboard-layout
|
(keyboard-layout
|
||||||
(keyboard-layout "de" #:options '("caps:swapescape")))
|
(keyboard-layout "de" #:options
|
||||||
|
'("caps:swapescape")))
|
||||||
(bootloader
|
(bootloader
|
||||||
(bootloader-configuration
|
(bootloader-configuration
|
||||||
(bootloader grub-efi-bootloader)
|
(bootloader grub-efi-bootloader)
|
||||||
|
@ -43,12 +43,14 @@
|
||||||
(file-systems
|
(file-systems
|
||||||
(cons*
|
(cons*
|
||||||
(file-system
|
(file-system
|
||||||
(device (file-system-label "EFI\\x20System\\x20Partition"))
|
(device
|
||||||
|
(partition-label "EFI System Partition"))
|
||||||
#;(device "/dev/disk/by-partlabel/EFI\\x20System\\x20Partition")
|
#;(device "/dev/disk/by-partlabel/EFI\\x20System\\x20Partition")
|
||||||
(mount-point "/boot/efi")
|
(mount-point "/boot/efi")
|
||||||
(type "vfat"))
|
(type "vfat"))
|
||||||
(file-system
|
(file-system
|
||||||
(device (file-system-label "guix-root"))
|
(device
|
||||||
|
(partition-label "guix-root"))
|
||||||
#;(device "/dev/disk/by-partlabel/guix-root")
|
#;(device "/dev/disk/by-partlabel/guix-root")
|
||||||
(mount-point "/")
|
(mount-point "/")
|
||||||
(type "xfs"))
|
(type "xfs"))
|
||||||
|
@ -56,7 +58,8 @@
|
||||||
(swap-devices
|
(swap-devices
|
||||||
(list
|
(list
|
||||||
(swap-space
|
(swap-space
|
||||||
(target (file-system-label "swap"))
|
(target
|
||||||
|
(partition-label "swap"))
|
||||||
#;(target "/dev/disk/by-partlabel/swap")
|
#;(target "/dev/disk/by-partlabel/swap")
|
||||||
(discard? #t))))
|
(discard? #t))))
|
||||||
(users
|
(users
|
||||||
|
@ -113,7 +116,8 @@
|
||||||
(terminal-switch #t)
|
(terminal-switch #t)
|
||||||
(default-session-command
|
(default-session-command
|
||||||
(greetd-wlgreet-sway-session
|
(greetd-wlgreet-sway-session
|
||||||
(sway (specification->package "swayfx"))
|
(sway
|
||||||
|
(specification->package "swayfx"))
|
||||||
;; (sway-configuration #f)
|
;; (sway-configuration #f)
|
||||||
)))))))
|
)))))))
|
||||||
(service fprintd-service-type)
|
(service fprintd-service-type)
|
||||||
|
|
Loading…
Reference in a new issue