modules/ryan-config/deploy-templates/HostTemplate

7f27d13d617b245745e78fc2e79266e99f6d4c1b · 697 B · 19 lines raw

1 (use-modules (ryan-config base-system)
2 (gnu))
3
4 (operating-system
5 (inherit base-operating-system)
6 (host-name "ChangeMe_HOST")
7 (file-systems (cons* (file-system
8 (mount-point "/")
9 (device (uuid "ChangeMe_ROOT"
10 'ext4))
11 (type "ext4"))
12 (file-system
13 (mount-point "/boot/efi")
14 (device (uuid "ChangeMe_BOOTEFI"
15 'fat32))
16 (type "vfat")) %base-file-systems))
17 (swap-devices
18 (list
19 (swap-space (target (uuid "ChangeMe_SWAP"))))))