diff --git a/hosts/yodaGaming/configuration.nix b/hosts/yodaGaming/configuration.nix index 345e9e3..8d5cc15 100644 --- a/hosts/yodaGaming/configuration.nix +++ b/hosts/yodaGaming/configuration.nix @@ -51,19 +51,7 @@ boot.blacklistedKernelModules = [ "i915" ]; boot.kernelParams = [ "i915.modeset=0" "radeon.si_support=0" "amdgpu.si_support=1" ]; - # List all available kernel versions: - # `nix repl` -> `:l ` -> `pkgs.linuxPackages` and press `TAB` - # Default. - #boot.kernelPackages = pkgs.linuxPackages; - # Latest. boot.kernelPackages = pkgs.linuxPackages_latest; - # Hardened. - # https://archlinux.org/packages/extra/x86_64/linux-hardened/ - # -> https://github.com/anthraxx/linux-hardened - #boot.kernelPackages = pkgs.linuxPackages_hardened; - # Free/Libre. - # https://en.wikipedia.org/wiki/Linux-libre - #boot.kernelPackages = pkgs.linuxPackages-libre; # Most users should never change this value after the initial install, for any reason, even if you've upgraded your system to a new NixOS release. system.stateVersion = "23.11";