summaryrefslogtreecommitdiff
path: root/modules/ryan-config/deploy-templates/HostTemplate.scm
blob: 9718c514efaed2fac0a1f3e4b975e94c73d5ef98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(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"))))))