dotfiles/modules/boot_systemd/flake.nix
2024-12-27 14:57:44 -06:00

35 lines
619 B
Nix

{
inputs = {
};
outputs =
{
self,
...
}:
{
nixosModules = {
default =
{
config,
lib,
...
}:
{
config = {
# Use the systemd-boot EFI boot loader.
boot.loader = {
systemd-boot = {
enable = true;
consoleMode = "keep";
};
timeout = 5;
efi = {
canTouchEfiVariables = true;
};
};
};
};
};
};
}