diff options
Diffstat (limited to 'systems/glados/boot.nix')
| -rw-r--r-- | systems/glados/boot.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/systems/glados/boot.nix b/systems/glados/boot.nix new file mode 100644 index 0000000..4a9af4e --- /dev/null +++ b/systems/glados/boot.nix @@ -0,0 +1,25 @@ +{ + lib, + pkgs, + ... +}: { + environment.systemPackages = with pkgs; [ + sbctl + tpm2-tss + ]; + + boot = { + initrd.systemd.enable = true; + kernelPackages = pkgs.linuxPackages_latest; + + bootspec.enable = true; + loader.systemd-boot.enable = lib.mkForce false; + + lanzaboote = { + enable = true; + pkiBundle = "/etc/secureboot"; + }; + + supportedFilesystems = ["btrfs" "ntfs"]; + }; +} |
