1
0
Fork 0
puter/common/boot.nix

17 lines
251 B
Nix
Raw Normal View History

2024-02-04 21:51:11 +01:00
{
boot = {
loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
2024-12-01 04:05:16 +01:00
tmp.cleanOnBoot = true;
2024-02-04 21:51:11 +01:00
};
}