mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-09-13 14:02:02 +02:00
24 lines
393 B
Nix
24 lines
393 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
timeout = 1;
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
consoleMode = "keep";
|
|
editor = true;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
plymouth = {
|
|
enable = true;
|
|
theme = "framework";
|
|
themePackages = [ pkgs.framework-plymouth ];
|
|
};
|
|
};
|
|
}
|