nixos/machines/workman/boot.nix
2025-05-06 00:12:18 +02:00

24 lines
439 B
Nix

{
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 ];
};
};
}