modules/ryan-config/deploy-templates/HostTemplate
de3f5434bd7a1a323663d88d3b0eca15aa8f46bf
· 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")))))) |