summaryrefslogtreecommitdiff
path: root/testvm.scm
blob: 4abe33fdc9adbcba77eac0ca1054a87376aa2137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(use-modules (ryan-config base-system)
             (gnu))

(operating-system
  (inherit base-operating-system)
  (host-name "GuixVM")
  (mapped-devices (list (mapped-device
                          (source (uuid
                                   "0b98fe74-ed99-424e-b7d7-514284190528"))
                          (target "sysroot")
                          (type luks-device-mapping))))
  (file-systems (cons* (file-system
                         (mount-point "/")
                         (device "/dev/mapper/sysroot")
                         (type "ext4")
                         (dependencies mapped-devices))
                       (file-system
                         (mount-point "/boot/efi")
                         (device (uuid "74F2-CFDC"
                                       'fat32))
                         (type "vfat")) %base-file-systems))
  (swap-devices
    (list
      (swap-space (target (uuid "277a198e-a3bf-4dba-9077-b1a95cb34869"))))))