.
This commit is contained in:
parent
d9f5dad995
commit
e2157f12ba
1 changed files with 4 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
(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)
|
||||||
|
@ -44,13 +45,13 @@
|
||||||
(cons*
|
(cons*
|
||||||
(file-system
|
(file-system
|
||||||
(device
|
(device
|
||||||
(partition-label "EFI System Partition"))
|
(find-partition-by-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
|
(device
|
||||||
(partition-label "guix-root"))
|
(find-partition-by-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"))
|
||||||
|
@ -59,7 +60,7 @@
|
||||||
(list
|
(list
|
||||||
(swap-space
|
(swap-space
|
||||||
(target
|
(target
|
||||||
(partition-label "swap"))
|
(find-partition-by-label "swap"))
|
||||||
#;(target "/dev/disk/by-partlabel/swap")
|
#;(target "/dev/disk/by-partlabel/swap")
|
||||||
(discard? #t))))
|
(discard? #t))))
|
||||||
(users
|
(users
|
||||||
|
|
Loading…
Reference in a new issue