testvm.scm
7957aa8dedb53bec6669cb33184d3e8e07641fd4
· 970 B · 24 lines
raw
| 1 | (use-modules (ryan-config base-system) |
| 2 | (gnu)) |
| 3 | |
| 4 | (operating-system |
| 5 | (inherit base-operating-system) |
| 6 | (host-name "GuixVM") |
| 7 | (mapped-devices (list (mapped-device |
| 8 | (source (uuid |
| 9 | "0b98fe74-ed99-424e-b7d7-514284190528")) |
| 10 | (target "sysroot") |
| 11 | (type luks-device-mapping)))) |
| 12 | (file-systems (cons* (file-system |
| 13 | (mount-point "/") |
| 14 | (device "/dev/mapper/sysroot") |
| 15 | (type "ext4") |
| 16 | (dependencies mapped-devices)) |
| 17 | (file-system |
| 18 | (mount-point "/boot/efi") |
| 19 | (device (uuid "74F2-CFDC" |
| 20 | 'fat32)) |
| 21 | (type "vfat")) %base-file-systems)) |
| 22 | (swap-devices |
| 23 | (list |
| 24 | (swap-space (target (uuid "277a198e-a3bf-4dba-9077-b1a95cb34869")))))) |