mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
made dummy option for deadnix to shutup about disko update flake.lock stopped using neovim overlay
24 lines
451 B
Nix
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;
|
|
};
|
|
};
|
|
}
|