20 lines
697 B
Plaintext
20 lines
697 B
Plaintext
|
(use-modules (ryan-config base-system)
|
||
|
(gnu))
|
||
|
|
||
|
(operating-system
|
||
|
(inherit base-operating-system)
|
||
|
(host-name "ChangeMe_HOST")
|
||
|
(file-systems (cons* (file-system
|
||
|
(mount-point "/")
|
||
|
(device (uuid "ChangeMe_ROOT"
|
||
|
'ext4))
|
||
|
(type "ext4"))
|
||
|
(file-system
|
||
|
(mount-point "/boot/efi")
|
||
|
(device (uuid "ChangeMe_BOOTEFI"
|
||
|
'fat32))
|
||
|
(type "vfat")) %base-file-systems))
|
||
|
(swap-devices
|
||
|
(list
|
||
|
(swap-space (target (uuid "ChangeMe_SWAP"))))))
|