1
0
Fork 0
puter/common/boot.nix

29 lines
453 B
Nix
Raw Normal View History

2025-05-11 22:49:04 +02:00
{ config, ... }:
2024-02-04 21:51:11 +01:00
{
2025-05-11 22:49:04 +02:00
fileSystems.${config.boot.loader.efi.efiSysMountPoint} = {
2025-03-01 22:21:00 +01:00
label = "BOOT";
fsType = "vfat";
};
2024-02-04 21:51:11 +01:00
boot = {
loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
2025-05-11 22:49:04 +02:00
# TODO
tmp = {
useTmpfs = true;
tmpfsSize = "50%";
cleanOnBoot = true;
};
2024-02-04 21:51:11 +01:00
};
}