diff --git a/system/nixinator/default.nix b/system/nixinator/default.nix index 23de7183..0837bcfc 100644 --- a/system/nixinator/default.nix +++ b/system/nixinator/default.nix @@ -153,11 +153,26 @@ }; boot = { - kernelPackages = pkgs.linuxPackages_zen; - # kernelPackages = pkgs.linuxPackages_latest; + # kernelPackages = pkgs.linuxPackages_zen; + kernelPackages = pkgs.linuxPackages_latest; - # kernelParams = [ "quiet" ]; - # plymouth.enable = true; + # Why do I need to know if something fails during boot??? + # consoleLogLevel = 3; + # initrd.verbose = false; + # initrd.systemd.enable = true; + # kernelParams = [ + # "quiet" + # "splash" + # "intremap=on" + # "boot.shell_on_fail" + # "udev.log_priority=3" + # "rd.systemd.show_status=auto" + # ]; + # plymouth = { + # enable = false; + # font = "${pkgs.monolisa}/share/fonts/truetype/MonoLisa-AltPars-Straight.ttf"; + # logo = "${pkgs.nixos-icons}/share/icons/hicolor/128x128/apps/nix-snowflake.png"; + # }; }; # environment.systemPackages = with pkgs; []; diff --git a/system/nixinator/hardware-configuration.nix b/system/nixinator/hardware-configuration.nix index e5ea8a7a..a2207183 100644 --- a/system/nixinator/hardware-configuration.nix +++ b/system/nixinator/hardware-configuration.nix @@ -145,10 +145,10 @@ nvidia-container-toolkit.enable = true; nvidia = { - # package = config.boot.kernelPackages.nvidiaPackages.stable; - package = config.boot.kernelPackages.nvidiaPackages.beta; + package = config.boot.kernelPackages.nvidiaPackages.stable; + # package = config.boot.kernelPackages.nvidiaPackages.beta; - open = true; + open = false; nvidiaSettings = false; # Those are for x-server modesetting.enable = true; # Required for wayland };