This commit is contained in:
2026-01-12 22:00:09 +01:00
commit c33f6abe21
21 changed files with 588 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{ config, pkgs, ... }:
{
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 5;
};
efi.canTouchEfiVariables = true;
timeout = 5;
};
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"nvidia-drm.modeset=1"
"quiet"
"splash"
"boot.shell_on_fail"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
initrd.verbose = false;
consoleLogLevel = 0;
plymouth = {
enable = true;
theme = "breeze";
};
};
}