mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 08:11:54 -05:00
lavaridge: enable lanzaboote
This commit is contained in:
parent
85969849ea
commit
9b8b7f1284
|
@ -11,6 +11,7 @@
|
||||||
./home.nix
|
./home.nix
|
||||||
./secrets.nix
|
./secrets.nix
|
||||||
./stylix.nix
|
./stylix.nix
|
||||||
|
self.inputs.lanzaboote.nixosModules.lanzaboote
|
||||||
self.inputs.nixhw.nixosModules.framework-13-amd-7000
|
self.inputs.nixhw.nixosModules.framework-13-amd-7000
|
||||||
self.nixosModules.common-auto-upgrade
|
self.nixosModules.common-auto-upgrade
|
||||||
self.nixosModules.common-base
|
self.nixosModules.common-base
|
||||||
|
@ -24,11 +25,17 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
initrd.systemd.enable = true;
|
||||||
kernelPackages = lib.mkForce pkgs.linuxPackages_6_9;
|
kernelPackages = lib.mkForce pkgs.linuxPackages_6_9;
|
||||||
|
|
||||||
|
lanzaboote = {
|
||||||
|
enable = true;
|
||||||
|
pkiBundle = "/etc/secureboot";
|
||||||
|
};
|
||||||
|
|
||||||
loader = {
|
loader = {
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = lib.mkForce false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue