From 309a328833f9dfec385d7f7042fd1ff7c5bd3506 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Tue, 10 Dec 2024 01:18:30 -0800 Subject: for stackexchange viewers --- configuration.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index fd5fb06..121e5fa 100644 --- a/configuration.nix +++ b/configuration.nix @@ -12,7 +12,15 @@ systemd-boot.enable = true; efi.canTouchEfiVariables = true; }; - kernelModules = [ "snd-seq" "snd-rawmidi" ]; + kernelModules = [ + "snd-seq" + "snd-rawmidi" + "xhci_hcd" + ]; + kernelParams = [ + "usbcore.autosuspend=-1" + "usbcore.quirks=0763:0015:iou" + ]; # kernelPackages = pkgs.linuxKernel.packages.linux_6_1; }; @@ -359,6 +367,10 @@ time.timeZone = "America/Vancouver"; i18n.defaultLocale = "en_CA.UTF-8"; - - system.stateVersion = "23.11"; + system = { + stateVersion = "23.11"; + nixos = { + tags = [ "fixing-hammer88" ]; + }; + }; } -- cgit