puter/common/boot.nix

16 lines
223 B
Nix
Raw Normal View History

2024-02-04 20:51:11 +00:00
{
boot = {
loader = {
systemd-boot = {
enable = true;
consoleMode = "max";
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
};
}