44 lines
920 B
Nix
44 lines
920 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
boot = {
|
||
|
consoleLogLevel = 0;
|
||
|
initrd.verbose = false;
|
||
|
initrd.systemd.enable = true;
|
||
|
|
||
|
loader = {
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
grub = {
|
||
|
enable = true;
|
||
|
device = "nodev";
|
||
|
efiSupport = true;
|
||
|
extraConfig = ''
|
||
|
set timeout_style=hidden
|
||
|
'';
|
||
|
# Because it still draws that image otherwise
|
||
|
splashImage = null;
|
||
|
};
|
||
|
timeout = 2;
|
||
|
};
|
||
|
|
||
|
kernelParams = [
|
||
|
"quiet"
|
||
|
"splash"
|
||
|
"boot.shell_on_fail"
|
||
|
"i915.fastboot=1"
|
||
|
"loglevel=3"
|
||
|
"rd.systemd.show_status=false"
|
||
|
"rd.udev.log_level=3"
|
||
|
"udev.log_priority=3"
|
||
|
"cryptdevice=UUID=ab82b477-2477-453f-b95f-28e5553ad10d:root"
|
||
|
"root=/dev/mapper/root"
|
||
|
];
|
||
|
|
||
|
plymouth = {
|
||
|
enable = true;
|
||
|
themePackages = [ pkgs.catppuccin-plymouth ];
|
||
|
theme = "catppuccin-macchiato";
|
||
|
};
|
||
|
};
|
||
|
}
|