testing zen kernel

This commit is contained in:
2024-09-15 14:23:00 -04:00
parent ad79fcfea2
commit d142dfdbad
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
{ {
inputs, inputs,
pkgs,
... ...
}: }:
{ {
@@ -15,6 +16,7 @@
./hardware.nix ./hardware.nix
./nvidia.nix ./nvidia.nix
]; ];
boot.kernelPackages = pkgs.linuxPackages_zen;
networking = { networking = {
hostName = "bob"; hostName = "bob";

View File

@@ -19,7 +19,7 @@
]; ];
boot = { boot = {
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; kernelPackages = lib.mkDefault config.boot.zfs.package.latestCompatibleLinuxPackages;
tmp.useTmpfs = true; tmp.useTmpfs = true;
}; };