nixos/machines/workman/boot.nix

25 lines
439 B
Nix
Raw Permalink Normal View History

2025-05-04 20:20:28 +02:00
{
config,
inputs,
...
}:
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
efi.canTouchEfiVariables = true;
};
plymouth = {
enable = true;
theme = "framework";
themePackages = [ inputs.framework-plymouth.packages.${config.nixpkgs.system}.default ];
};
};
}