summaryrefslogtreecommitdiff
path: root/system-profiles/lanzaboote.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2025-07-18 19:20:28 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2025-07-18 19:20:28 +0200
commit5212255fa1d10cbd17cb9841ca0611b0ecc91922 (patch)
tree833dfb0fc54821ebb8b533d5ecb3c6da42da8827 /system-profiles/lanzaboote.nix
parentc2398564a6173e2aaf77f5fab6d559b90dc026ad (diff)
downloadnixos-5212255fa1d10cbd17cb9841ca0611b0ecc91922.tar
nixos-5212255fa1d10cbd17cb9841ca0611b0ecc91922.tar.gz
nixos-5212255fa1d10cbd17cb9841ca0611b0ecc91922.tar.bz2
nixos-5212255fa1d10cbd17cb9841ca0611b0ecc91922.tar.xz
nixos-5212255fa1d10cbd17cb9841ca0611b0ecc91922.zip
lanzabooteflakes
Diffstat (limited to 'system-profiles/lanzaboote.nix')
-rw-r--r--system-profiles/lanzaboote.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/system-profiles/lanzaboote.nix b/system-profiles/lanzaboote.nix
new file mode 100644
index 00000000..f1e179cf
--- /dev/null
+++ b/system-profiles/lanzaboote.nix
@@ -0,0 +1,14 @@
1{ flakeInputs, pkgs, ... }:
2{
3 imports = [
4 flakeInputs.lanzaboote.nixosModules.lanzaboote
5 ];
6
7 config = {
8 environment.systemPackages = [ pkgs.sbctl ];
9 boot.lanzaboote = {
10 enable = true;
11 pkiBundle = "/var/lib/sbctl";
12 };
13 };
14}