From 3855130d41a3c221045d49de387e08ad74c2659f Mon Sep 17 00:00:00 2001 From: kalipso Date: Fri, 20 Dec 2024 20:15:08 +0100 Subject: [PATCH] [louise] fix sound hopefully --- machines/louise/configuration.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/machines/louise/configuration.nix b/machines/louise/configuration.nix index 913a1af8..470e1fbc 100644 --- a/machines/louise/configuration.nix +++ b/machines/louise/configuration.nix @@ -44,6 +44,18 @@ ]; }; + # rtkit is optional but recommended + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + systemWide = true; + # If you want to use JACK applications, uncomment this + #jack.enable = true; + }; + services.tor = { enable = true; client.enable = true;