diff options
author | Soispha <soispha@vhack.eu> | 2023-07-15 21:44:03 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-15 21:44:03 +0200 |
commit | 64dfa6c201528b119cd900cd55d82ca01b248d89 (patch) | |
tree | 82d59e4874fd9ea7b7e0ca37ac7e441655929b6b /system | |
parent | Fix(system/disks): Increase default tempfs size to accommodate big builds (diff) | |
download | nixos-config-64dfa6c201528b119cd900cd55d82ca01b248d89.tar.gz nixos-config-64dfa6c201528b119cd900cd55d82ca01b248d89.zip |
Fix: Temporarily disable lanzaboot to set tempfs size
Diffstat (limited to '')
-rw-r--r-- | system/boot/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/boot/default.nix b/system/boot/default.nix index 9606c7b3..f873f816 100644 --- a/system/boot/default.nix +++ b/system/boot/default.nix @@ -13,7 +13,7 @@ kernelPackages = pkgs.linuxPackages_latest; lanzaboote = { - enable = true; + enable = false; pkiBundle = "/etc/secureboot"; }; @@ -25,7 +25,7 @@ systemd-boot.enable = lib.mkForce false; grub = { - enable = false; + enable = true; # theme = pkgs.nixos-grub2-theme; splashImage = ./boot_pictures/gnu.png; efiSupport = true; |