From e431de5c64c72f0d10fb075120b04799956be5cf Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 1 Jun 2021 21:47:13 +0530 Subject: Fixes jack audio --- hardware-configuration.nix | 8 +++++++- packages.nix | 24 ++++++++++++++---------- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 2337614..b3723d5 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -12,7 +12,13 @@ availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" ]; kernelModules = []; }; - boot.kernelModules = [ "kvm-intel" "sd_mod" "rtw88_8822ce" ]; + boot.kernelModules = [ + "kvm-intel" + "rtw88_8822ce" + "sd_mod" + "snd-seq" + "snd-rawmidi" + ]; boot.kernelParams = [ "i8042.nopnp=1" "pci=nocrs" "i915.enable_dpcd_backlight=1" "acpi_backlight=vendor" ]; boot.extraModulePackages = []; boot.extraModprobeConfig = '' diff --git a/packages.nix b/packages.nix index 7ccceca..ce4f4df 100644 --- a/packages.nix +++ b/packages.nix @@ -23,20 +23,23 @@ let gcc gnumake - nodejs-15_x + nodejs-16_x python3 - rustup + # rustup + + godot + blender rnix-lsp - python-language-server - # haskell-language-server + # python-language-server + haskell-language-server + ghc # cabal-install - # ghc ] ++ ( with pkgs.nodePackages; [ typescript typescript-language-server - bash-language-server + # bash-language-server ] ); @@ -54,20 +57,21 @@ let feh # Remind - remind - wyrd + # remind + # wyrd - signal-cli + # signal-cli + # signal-desktop lf dunst gotop tremc ]; + utils = with pkgs; [ libnotify xcwd - alsaUtils unzip curl jq -- cgit v1.3.1