diff options
author | Karel Kočí <cynerd@email.cz> | 2023-02-07 09:57:44 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-02-07 09:57:44 +0100 |
commit | 391bb58906392d5d8939cc1237eb2e0b66e70b9e (patch) | |
tree | b68ddabbc0f1b7cbdc6d11c1e0fc7baafdabf3cb /nixos | |
parent | deef5c6fd5fdb3178bdf5831cea38b99a24ca15a (diff) | |
download | nixos-personal-391bb58906392d5d8939cc1237eb2e0b66e70b9e.tar.gz nixos-personal-391bb58906392d5d8939cc1237eb2e0b66e70b9e.tar.bz2 nixos-personal-391bb58906392d5d8939cc1237eb2e0b66e70b9e.zip |
nixos/binky: use stable kernel
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/machine/binky.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/machine/binky.nix b/nixos/machine/binky.nix index 3c3e1d2..556dbcf 100644 --- a/nixos/machine/binky.nix +++ b/nixos/machine/binky.nix @@ -21,7 +21,7 @@ with lib; { }; # Try older kernel to see if it helps with USB monitor - boot.kernelPackages = pkgs.linuxPackages_6_0; + boot.kernelPackages = pkgs.linuxPackages; boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "sd_mod"]; boot.kernelModules = ["kvm-amd"]; |