refactor: move non-kernel-related options

This commit is contained in:
dump_stack() 2024-10-18 15:30:34 +00:00
parent b64f5df391
commit c79f9f40c3
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB
2 changed files with 1 additions and 5 deletions

View File

@ -11,6 +11,7 @@
pkgs.linux-firmware (pkgs.callPackage ./pkgs/t14s-firmware.nix { }) pkgs.linux-firmware (pkgs.callPackage ./pkgs/t14s-firmware.nix { })
]; ];
boot.loader.efi.canTouchEfiVariables = false;
boot.loader.systemd-boot = { boot.loader.systemd-boot = {
enable = true; enable = true;
extraFiles = { extraFiles = {

View File

@ -106,10 +106,5 @@ in {
enableTpm2 = false; enableTpm2 = false;
}; };
}; };
loader = {
systemd-boot.enable = lib.mkForce true;
efi.canTouchEfiVariables = false;
};
}; };
} }