diff options
Diffstat (limited to 'system/default.nix')
| -rw-r--r-- | system/default.nix | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/system/default.nix b/system/default.nix index f8101c8..e52896f 100644 --- a/system/default.nix +++ b/system/default.nix @@ -62,6 +62,7 @@ in { (_: _: inputs.hy3.packages.${system}) # gaming (_: _: inputs.nix-gaming.packages.${system}) + inputs.nix-cachyos-kernel.overlays.pinned # misc (_: _: inputs.talc.packages.${system}) (_: _: inputs.apple-fonts.packages.${system}) @@ -141,10 +142,7 @@ in { }; # use the latest kernel - boot.kernelPackages = - if config.gaming.enable - then pkgs.linuxPackages_xanmod_latest - else pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_latest; # sysrq boot.kernel.sysctl."kernel.sysrq" = 246; |