nixos/modules/boot/misc.nix
2023-04-22 01:57:28 -04:00

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;
};
};
}