mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
22 lines
385 B
Nix
22 lines
385 B
Nix
_: {
|
|
self,
|
|
lib,
|
|
...
|
|
}: {
|
|
boot = {
|
|
plymouth = {
|
|
enable = lib.mkDefault true;
|
|
theme = "breeze";
|
|
logo = self + /misc/nixos.png;
|
|
};
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = lib.mkDefault true;
|
|
consoleMode = "max";
|
|
editor = false;
|
|
};
|
|
efi.canTouchEfiVariables = lib.mkDefault true;
|
|
timeout = 0;
|
|
};
|
|
};
|
|
}
|