misc cleanup

This commit is contained in:
Gerg-L 2023-03-28 22:01:50 -04:00
parent 7326e9213e
commit ef9f011e57
9 changed files with 62 additions and 60 deletions

22
modules/boot/misc.nix Normal file
View 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;
};
};
}