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;