flake/modules/core/bootloader.nix
2024-03-26 11:39:16 +00:00

25 lines
414 B
Nix

{
config,
pkgs,
lib,
...
}: {
boot = {
tmp.cleanOnBoot = true;
bootspec.enable = true;
consoleLogLevel = 0;
kernelParams = [
"cgroup_no_v1=all"
"systemd.unified_cgroup_hierarchy=yes"
];
initrd.verbose = false;
loader = {
systemd-boot.enable = true;
systemd-boot.editor = false;
efi.canTouchEfiVariables = true;
timeout = 1;
};
};
}