puter/common/boot.nix

22 lines
324 B
Nix
Raw Normal View History

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