nixos: core: boot: simplify

This commit is contained in:
Guanran Wang 2024-01-08 18:53:08 +08:00
parent ecfa59e73d
commit ab143cf59d
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -31,13 +31,7 @@
### Boot
boot.initrd.systemd.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot = {
enable = lib.mkDefault true; # mkDefault for Lanzaboote
editor = false; # Disabled for security
### Utilities
#netbootxyz.enable = true;
#memtest86.enable = true;
};
boot.loader.systemd-boot.enable = lib.mkDefault true; # mkDefault for Lanzaboote
### Default Programs
environment.defaultPackages = [];