aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2023-01-09 10:29:34 +0100
committerKarel Kočí <cynerd@email.cz>2023-01-09 10:29:34 +0100
commitf7d2f679fd1c97681e1fdf9ee6ca825c1282de0a (patch)
treedb48eca6b25e99bec68d0645d434446477199bb4 /nixos
parent3bee56880d262bf57eca092423a76f812465f210 (diff)
downloadnixos-personal-f7d2f679fd1c97681e1fdf9ee6ca825c1282de0a.tar.gz
nixos-personal-f7d2f679fd1c97681e1fdf9ee6ca825c1282de0a.tar.bz2
nixos-personal-f7d2f679fd1c97681e1fdf9ee6ca825c1282de0a.zip
nixos/machine/binky: fix USB monitor not working correctly
Diffstat (limited to 'nixos')
-rw-r--r--nixos/machine/binky.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/machine/binky.nix b/nixos/machine/binky.nix
index a90d625..3c3e1d2 100644
--- a/nixos/machine/binky.nix
+++ b/nixos/machine/binky.nix
@@ -20,6 +20,8 @@ with lib; {
};
};
+ # Try older kernel to see if it helps with USB monitor
+ boot.kernelPackages = pkgs.linuxPackages_6_0;
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "usb_storage" "sd_mod"];
boot.kernelModules = ["kvm-amd"];