Change kernel to latest zen kernel for gaming

This commit is contained in:
Florian RICHER 2024-02-19 20:49:59 +01:00
parent 4faee020ce
commit bc5521fff0
3 changed files with 7 additions and 0 deletions

View file

@ -7,6 +7,7 @@
{
imports =
[
../../modules/linux_gaming.nix
../../modules/system.nix
../../modules/network.nix
../../modules/nvidia.nix

View file

@ -7,6 +7,7 @@
{
imports =
[
../../modules/linux_gaming.nix
../../modules/system.nix
../../modules/network.nix
../../modules/nvidia.nix

5
modules/linux_gaming.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_zen;
}