mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-11-23 20:43:04 +01:00
23 lines
383 B
Nix
23 lines
383 B
Nix
{
|
|
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 ];
|
|
};
|
|
};
|
|
}
|