summaryrefslogtreecommitdiff
path: root/systems/glados/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'systems/glados/boot.nix')
-rw-r--r--systems/glados/boot.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/systems/glados/boot.nix b/systems/glados/boot.nix
index 0aa6f9e..c88c82b 100644
--- a/systems/glados/boot.nix
+++ b/systems/glados/boot.nix
@@ -8,7 +8,9 @@
imports = [ inputs.lanzaboote.nixosModules.lanzaboote ];
environment.systemPackages = with pkgs; [
+ # manual lanzaboote maintenance (NOTE: i have not actually used this since ~2022)
sbctl
+ # TODO: is this actually required for using `tpm2-device=auto` to unlock LUKS volumes in initrd? probably
tpm2-tss
];
@@ -18,6 +20,7 @@
kernelParams = [ "amd_pstate=active" ];
+ # lanzaboote replaces this
loader.systemd-boot.enable = lib.mkForce false;
lanzaboote = {
@@ -25,6 +28,7 @@
pkiBundle = "/etc/secureboot";
};
+ # for game drive
supportedFilesystems = [ "ntfs" ];
};
}