Make latest kernel common default

This commit is contained in:
Joseph DiGiovanni 2024-08-18 21:03:02 -04:00
parent 097e3698ee
commit 3c82de3a08
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,6 @@
"xhci_pci"
];
kernelPackages = pkgs.linuxPackages_latest; # TODO: See if this fixes sleep issues
};
hardware.amd-graphics.enable = true;

View file

@ -1,4 +1,4 @@
{ inputs, outputs, ... }:
{ inputs, outputs, pkgs, ... }:
{
imports = [
@ -17,6 +17,7 @@
};
};
kernelPackages = pkgs.linuxPackages_latest;
plymouth.enable = true;
secureboot.enable = true;
};