From a207361bc4fb1be50c93c5c3d76dc56346efcfe7 Mon Sep 17 00:00:00 2001 From: vanten-s Date: Mon, 25 Mar 2024 11:55:18 +0100 Subject: [PATCH] Fixed pipewire --- configuration.nix | 7 ++++--- home.nix | 4 ++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 7535099..3aa3c3a 100644 --- a/configuration.nix +++ b/configuration.nix @@ -136,9 +136,10 @@ in { security.rtkit.enable = true; services.pipewire = { enable = true; - alsa.enable = true; - alsa.support32Bit = true; - pulse.enable = true; + wireplumber.enable = true; + alsa.enable = false; + alsa.support32Bit = false; + pulse.enable = false; }; services.pcscd.enable = true; diff --git a/home.nix b/home.nix index 1ff611c..9a4c103 100644 --- a/home.nix +++ b/home.nix @@ -30,6 +30,10 @@ ".config/local".source = dotfiles/local; }; + services.pipewire.enable = true; + services.pipewire.wireplumber.enable = true; + services.pipewire.audio.enable = false; + home.sessionVariables = { }; programs.home-manager.enable = true;