diff options
author | Ryan Schanzenbacher <ryan@rschanz.org> | 2025-06-17 04:37:59 +0200 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2025-06-17 04:40:52 +0200 |
commit | a4b3154417d4604e18b1ad0ade3d248f5505bebd (patch) | |
tree | 02c23b12d4506e5c6960f024e57c68b9250829b8 | |
parent | 6d16b960ad62f7b1b939841661575efc5856c8d8 (diff) |
switched to signed bootloader
-rw-r--r-- | SmallLaptop.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/SmallLaptop.scm b/SmallLaptop.scm index d277afe..121e478 100644 --- a/SmallLaptop.scm +++ b/SmallLaptop.scm | |||
@@ -5,6 +5,7 @@ | |||
5 | (operating-system | 5 | (operating-system |
6 | (inherit base-operating-system) | 6 | (inherit base-operating-system) |
7 | (host-name "SmallLaptop") | 7 | (host-name "SmallLaptop") |
8 | (timezone "Europe/Amsterdam") | ||
8 | (mapped-devices (list (mapped-device | 9 | (mapped-devices (list (mapped-device |
9 | (source (uuid | 10 | (source (uuid |
10 | "b22d6f2b-44ce-4b56-9833-dde593d19d75")) | 11 | "b22d6f2b-44ce-4b56-9833-dde593d19d75")) |
@@ -21,7 +22,8 @@ | |||
21 | 'fat32)) | 22 | 'fat32)) |
22 | (type "vfat")) %base-file-systems)) | 23 | (type "vfat")) %base-file-systems)) |
23 | (bootloader (bootloader-configuration | 24 | (bootloader (bootloader-configuration |
24 | (bootloader uefi-uki-bootloader) | 25 | (bootloader (uefi-uki-signed-bootloader |
26 | "/var/lib/sbctl/keys/db/db.pem" "/var/lib/sbctl/keys/db/db.key")) | ||
25 | (targets (list "/boot/efi")) | 27 | (targets (list "/boot/efi")) |
26 | (keyboard-layout (keyboard-layout "us")))) | 28 | (keyboard-layout (keyboard-layout "us")))) |
27 | (swap-devices | 29 | (swap-devices |