gaming: Use xanmod kernel

This commit is contained in:
Quentin Boyer 2022-12-05 23:07:57 +01:00 committed by Quentin Boyer
parent 163e455217
commit b90349fbd3
2 changed files with 4 additions and 1 deletions

View file

@ -6,6 +6,8 @@
programs.steam.enable = true;
hardware.steam-hardware.enable = true;
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
security.wrappers = {
gamescope = {
owner = "root";

View file

@ -1,11 +1,12 @@
{extraInfo}: {
config,
pkgs,
lib,
...
}: {
imports = [extraInfo];
boot.kernelPackages = pkgs.linuxPackages;
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages;
programs.nix-ld.enable = true;