puter/common/boot.nix
2024-12-01 04:05:16 +01:00

17 lines
251 B
Nix

{
boot = {
loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
tmp.cleanOnBoot = true;
};
}