From 2653aa81dde36bb700d2c0db03231411a55bd3dd Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Sun, 4 Aug 2024 18:43:03 -0500 Subject: [PATCH] replace pulse with pipewire on copernicus --- boxes/copernicus/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/boxes/copernicus/default.nix b/boxes/copernicus/default.nix index a7c3e69..50ce153 100644 --- a/boxes/copernicus/default.nix +++ b/boxes/copernicus/default.nix @@ -9,7 +9,6 @@ ../../modules/bootstrap.nix ../../modules/common.nix ../../modules/x11.nix - ../../modules/pulse.nix ../../modules/discord.nix ../../modules/gaming.nix ../../modules/rbw.nix @@ -41,6 +40,7 @@ imagemagick pciutils usbutils + pwvucontrol ]; services.hardware.bolt.enable = true; # thunderbolt support @@ -70,6 +70,13 @@ services.avahi.nssmdns4 = true; # enables the mDNS NSS plug-in services.avahi.openFirewall = true; # opens the firewall for UDP port 5353 + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + }; + programs.adb.enable = true; powerManagement.cpuFreqGovernor = "performance";