diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-28 18:00:30 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-08-28 18:00:30 +0200 |
commit | 27277541e0654b1e42cdb84d79b749faafefaac6 (patch) | |
tree | e1b9d367dd53cbcb513593fb74bef88816059427 /hosts | |
parent | Packages: Remove trackma (diff) | |
download | nixos-config-27277541e0654b1e42cdb84d79b749faafefaac6.tar.gz nixos-config-27277541e0654b1e42cdb84d79b749faafefaac6.tar.bz2 nixos-config-27277541e0654b1e42cdb84d79b749faafefaac6.zip |
Phobos+VM: Switch to latest kernel
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/phobos/hardware.nix | 1 | ||||
-rw-r--r-- | hosts/vm/hardware.nix | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/hosts/phobos/hardware.nix b/hosts/phobos/hardware.nix index cf95556..7065ecc 100644 --- a/hosts/phobos/hardware.nix +++ b/hosts/phobos/hardware.nix @@ -12,6 +12,7 @@ in availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" "sdhci_pci" ]; kernelModules = [ ]; }; + kernelPackages = pkgs.linuxPackages_latest; kernelModules = [ "kvm_intel" ]; extraModulePackages = [ ]; kernelParams = [ "net.ifnames=0" "biosdevname=0" "iomem=relaxed" "mitigations=off" ]; diff --git a/hosts/vm/hardware.nix b/hosts/vm/hardware.nix index 7b04d70..470f733 100644 --- a/hosts/vm/hardware.nix +++ b/hosts/vm/hardware.nix @@ -10,6 +10,7 @@ [ "ata_piix" "ohci_pci" "sd_mod" "sr_mod" ]; kernelModules = [ ]; }; + kernelPackages = pkgs.linuxPackages_latest; kernelModules = [ ]; extraModulePackages = [ ]; kernelParams = [ "net.ifnames=0" "biosdevname=0" "mitigations=off" ]; |