mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
misc cleanup
This commit is contained in:
parent
7326e9213e
commit
ef9f011e57
9 changed files with 62 additions and 60 deletions
22
modules/boot/misc.nix
Normal file
22
modules/boot/misc.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
_: {
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue