nixos/machines/playman/boot.nix

18 lines
317 B
Nix
Raw Normal View History

2026-04-03 15:14:05 +02:00
_: {
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;
};
};
}