fix(ocicat): Update to latest kernel pkgs
This allows the framework 16 to get the proper shutdown signal from the
kernel, and actually turns off the computer instead of just exiting the
kernel and sitting there.
Change-Id: I7abd4468a1999b6d046cf4b0e714a550e0d1d557
Reviewed-on: https://git.clicks.codes/c/Chimera/NixFiles/+/769
Reviewed-by: Samuel Shuert <coded@clicks.codes>
Tested-by: Samuel Shuert <coded@clicks.codes>
diff --git a/systems/x86_64-linux/ocicat/boot/default.nix b/systems/x86_64-linux/ocicat/boot/default.nix
index 2941952..dc2078a 100644
--- a/systems/x86_64-linux/ocicat/boot/default.nix
+++ b/systems/x86_64-linux/ocicat/boot/default.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ pkgs, ... }:
{
boot.initrd.availableKernelModules = [
"nvme"
@@ -15,6 +15,8 @@
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
+ boot.kernelPackages = pkgs.linuxPackages_latest;
+
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;