nixos/machines/playman/boot.nix
2026-04-12 16:01:39 +02:00

17 lines
317 B
Nix

_: {
boot = {
loader = {
timeout = 0;
systemd-boot = {
enable = true;
configurationLimit = 10;
editor = true;
};
efi.canTouchEfiVariables = true;
};
initrd = {
systemd.enable = true; # for a nice password prompt
verbose = false;
};
};
}