refactor: cleanup

This commit is contained in:
Daniel Langbein 2025-02-11 16:38:02 +01:00
parent 16566f25e3
commit 39087dd65f
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -51,19 +51,7 @@
boot.blacklistedKernelModules = [ "i915" ]; boot.blacklistedKernelModules = [ "i915" ];
boot.kernelParams = [ "i915.modeset=0" "radeon.si_support=0" "amdgpu.si_support=1" ]; boot.kernelParams = [ "i915.modeset=0" "radeon.si_support=0" "amdgpu.si_support=1" ];
# List all available kernel versions:
# `nix repl` -> `:l <nixpkgs>` -> `pkgs.linuxPackages` and press `TAB`
# Default.
#boot.kernelPackages = pkgs.linuxPackages;
# Latest.
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. # 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"; system.stateVersion = "23.11";