Bump altra's kernel to latest

Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
magic_rb 2023-12-10 15:28:28 +01:00
parent 1d39c23d0b
commit 843357e9ab
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -1,8 +1,17 @@
{ inputs', ... }:
{ {
pkgs,
inputs',
...
}: let
kernelPackages = pkgs.linuxPackages_latest;
in {
imports = [ imports = [
(inputs'.nixpkgs + "/nixos/modules/profiles/qemu-guest.nix") (inputs'.nixpkgs + "/nixos/modules/profiles/qemu-guest.nix")
]; ];
boot.initrd.kernelModules = ["nvme"]; boot = {
initrd.kernelModules = ["nvme"];
kernelPackages = kernelPackages;
zfs.enableUnstable = true;
};
} }