nixos/modules/boot/misc.nix
Gerg-L 0d2e560191 switch to using specialArgs for inputs
made dummy option for deadnix to shutup about disko

update flake.lock

stopped using neovim overlay
2023-05-17 22:35:48 -04:00

24 lines
451 B
Nix

{
self,
lib,
...
}: {
boot = {
plymouth = {
enable = lib.mkDefault true;
theme = "breeze";
logo = self + /misc/nixos.png;
};
loader = {
grub.configurationLimit = 10;
systemd-boot = {
configurationLimit = 10;
enable = lib.mkDefault true;
consoleMode = "max";
editor = false;
};
efi.canTouchEfiVariables = lib.mkDefault true;
timeout = 0;
};
};
}