From a6fca200dbab09959fbdcca93f03d89c39be45d0 Mon Sep 17 00:00:00 2001 From: deadvey Date: Thu, 26 Dec 2024 00:38:40 +0000 Subject: [PATCH] 3 current 2024-12-26 00:38:39 24.11.711867.6c90912761c4 6.6.67 * --- nixos/configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 97d182e..ab7e680 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -53,8 +53,16 @@ # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - # Enable pulseaudio - hardware.pulseaudio.enable = true; # For some reason it's saying I can't enable it because pipewire?!? + # Audio + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + # If you want to use JACK applications, uncomment this + #jack.enable = true; + }; # Enable gpm (mouse in tty) services.gpm.enable = true;