mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-12-12 21:55:19 +01:00
25 lines
439 B
Nix
25 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 ];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|