.
This commit is contained in:
parent
aabab2f392
commit
5f4c792820
1 changed files with 9 additions and 3 deletions
12
config.scm
12
config.scm
|
@ -2,6 +2,7 @@
|
|||
|
||||
(use-modules
|
||||
(gnu)
|
||||
(gnu build file-systems)
|
||||
(gnu image)
|
||||
(gnu services authentication)
|
||||
(gnu services avahi)
|
||||
|
@ -42,18 +43,23 @@
|
|||
(file-systems
|
||||
(cons*
|
||||
(file-system
|
||||
(device "/dev/disk/by-partlabel/EFI\\x20System\\x20Partition")
|
||||
(device (uuid
|
||||
(read-partition-uuid
|
||||
(find-partition-by-label "EFI System Partition"))))
|
||||
#;(device "/dev/disk/by-partlabel/EFI\\x20System\\x20Partition")
|
||||
(mount-point "/boot/efi")
|
||||
(type "vfat"))
|
||||
(file-system
|
||||
(device "/dev/disk/by-partlabel/guix-root")
|
||||
(device (find-partition-by-label "guix-root"))
|
||||
#;(device "/dev/disk/by-partlabel/guix-root")
|
||||
(mount-point "/")
|
||||
(type "xfs"))
|
||||
%base-file-systems))
|
||||
(swap-devices
|
||||
(list
|
||||
(swap-space
|
||||
(target "/dev/disk/by-partlabel/swap")
|
||||
(target (find-partition-by-label "swap"))
|
||||
#;(target "/dev/disk/by-partlabel/swap")
|
||||
(discard? #t))))
|
||||
(users
|
||||
(cons*
|
||||
|
|
Loading…
Reference in a new issue