SmallLaptop.scm
b307172932ea5fc99dc9053ebd263cb9ae5a2b4c
· 1.3 KB · 31 lines
raw
| 1 | (use-modules (ryan-config base-system) |
| 2 | (ryan-bootloader uki) |
| 3 | (gnu)) |
| 4 | |
| 5 | (operating-system |
| 6 | (inherit base-operating-system) |
| 7 | (host-name "SmallLaptop") |
| 8 | (timezone "Europe/Amsterdam") |
| 9 | (mapped-devices (list (mapped-device |
| 10 | (source (uuid |
| 11 | "b22d6f2b-44ce-4b56-9833-dde593d19d75")) |
| 12 | (target "sysroot") |
| 13 | (type luks-device-mapping)))) |
| 14 | (file-systems (cons* (file-system |
| 15 | (mount-point "/") |
| 16 | (device "/dev/mapper/sysroot") |
| 17 | (type "ext4") |
| 18 | (dependencies mapped-devices)) |
| 19 | (file-system |
| 20 | (mount-point "/boot/efi") |
| 21 | (device (uuid "B70B-1F33" |
| 22 | 'fat32)) |
| 23 | (type "vfat")) %base-file-systems)) |
| 24 | (bootloader (bootloader-configuration |
| 25 | (bootloader (uefi-uki-signed-bootloader |
| 26 | "/var/lib/sbctl/keys/db/db.pem" "/var/lib/sbctl/keys/db/db.key")) |
| 27 | (targets (list "/boot/efi")) |
| 28 | (keyboard-layout (keyboard-layout "us")))) |
| 29 | (swap-devices |
| 30 | (list |
| 31 | (swap-space (target (uuid "3d4b8192-e86f-4579-9285-29f7cd11d136")))))) |