mirror of
https://git.in.rschanz.org/ryan77627/guix-config.git
synced 2024-11-07 13:36:09 -05:00
19 lines
697 B
Text
19 lines
697 B
Text
(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"))))))
|