diff options
author | Karel Kočí <cynerd@email.cz> | 2023-01-09 10:29:34 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-01-09 10:29:34 +0100 |
commit | f7d2f679fd1c97681e1fdf9ee6ca825c1282de0a (patch) | |
tree | db48eca6b25e99bec68d0645d434446477199bb4 /nixos | |
parent | 3bee56880d262bf57eca092423a76f812465f210 (diff) | |
download | nixos-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.nix | 2 |
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"]; |