nixos/machines/workman/boot.nix

25 lines
393 B
Nix
Raw Normal View History

2025-05-04 20:20:28 +02:00
{
config,
2025-07-18 21:02:13 +02:00
pkgs,
2025-05-04 20:20:28 +02:00
...
}:
{
boot = {
loader = {
timeout = 1;
systemd-boot = {
enable = true;
configurationLimit = 10;
consoleMode = "keep";
editor = true;
};
efi.canTouchEfiVariables = true;
};
plymouth = {
enable = true;
theme = "framework";
2025-07-18 21:02:13 +02:00
themePackages = [ pkgs.framework-plymouth ];
2025-05-04 20:20:28 +02:00
};
};
}