.
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
|
||||
(gnu)
|
||||
(gnu build file-systems)
|
||||
(gnu image)
|
||||
(gnu services authentication)
|
||||
(gnu services avahi)
|
||||
|
@ -33,7 +32,8 @@
|
|||
(timezone "Europe/Berlin")
|
||||
(locale "de_DE.utf8")
|
||||
(keyboard-layout
|
||||
(keyboard-layout "de" #:options '("caps:swapescape")))
|
||||
(keyboard-layout "de" #:options
|
||||
'("caps:swapescape")))
|
||||
(bootloader
|
||||
(bootloader-configuration
|
||||
(bootloader grub-efi-bootloader)
|
||||
|
@ -43,12 +43,14 @@
|
|||
(file-systems
|
||||
(cons*
|
||||
(file-system
|
||||
(device (file-system-label "EFI\\x20System\\x20Partition"))
|
||||
(device
|
||||
(partition-label "EFI System Partition"))
|
||||
#;(device "/dev/disk/by-partlabel/EFI\\x20System\\x20Partition")
|
||||
(mount-point "/boot/efi")
|
||||
(type "vfat"))
|
||||
(file-system
|
||||
(device (file-system-label "guix-root"))
|
||||
(device
|
||||
(partition-label "guix-root"))
|
||||
#;(device "/dev/disk/by-partlabel/guix-root")
|
||||
(mount-point "/")
|
||||
(type "xfs"))
|
||||
|
@ -56,7 +58,8 @@
|
|||
(swap-devices
|
||||
(list
|
||||
(swap-space
|
||||
(target (file-system-label "swap"))
|
||||
(target
|
||||
(partition-label "swap"))
|
||||
#;(target "/dev/disk/by-partlabel/swap")
|
||||
(discard? #t))))
|
||||
(users
|
||||
|
@ -113,7 +116,8 @@
|
|||
(terminal-switch #t)
|
||||
(default-session-command
|
||||
(greetd-wlgreet-sway-session
|
||||
(sway (specification->package "swayfx"))
|
||||
(sway
|
||||
(specification->package "swayfx"))
|
||||
;; (sway-configuration #f)
|
||||
)))))))
|
||||
(service fprintd-service-type)
|
||||
|
|
Loading…
Reference in a new issue