summaryrefslogtreecommitdiff
path: root/SmallLaptop.scm
diff options
context:
space:
mode:
Diffstat (limited to 'SmallLaptop.scm')
-rw-r--r--SmallLaptop.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/SmallLaptop.scm b/SmallLaptop.scm
new file mode 100644
index 0000000..121e478
--- /dev/null
+++ b/SmallLaptop.scm
@@ -0,0 +1,31 @@
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"))))))