aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2024-03-10 18:19:34 +0100
committerSoispha <soispha@vhack.eu>2024-03-10 18:19:34 +0100
commitc2228a18916cc9b1224124f6b609cb70ceb86452 (patch)
tree687b4e17627d096664e21534e9fd2b5b7a15bce6
parentrefactor(hm/conf/nvim/plgs/{nvim-cmp,vim-tex}): Update to new attr names (diff)
downloadnixos-config-c2228a18916cc9b1224124f6b609cb70ceb86452.zip
fix(sys/sound): Disable setting the default volume
-rw-r--r--sys/sound/default.nix25
1 files changed, 14 insertions, 11 deletions
diff --git a/sys/sound/default.nix b/sys/sound/default.nix
index 318dcb8b..49e4fa83 100644
--- a/sys/sound/default.nix
+++ b/sys/sound/default.nix
@@ -1,8 +1,9 @@
-{pkgs, ...}: {
+{...}: {
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
+
services.pipewire = {
enable = true;
alsa.enable = true;
@@ -10,14 +11,16 @@
pulse.enable = true;
jack.enable = true;
};
- environment.etc.pipewire-pulse-config = {
- target = "pipewire/pipewire-pulse.conf.d/pipewire-pulse-config.conf";
- text = ''
- # Extra scripts can be started here. Setup in default.pa can be moved in
- # a script or in pulse.cmd below
- context.exec = [
- { path = "${pkgs.pulseaudio}/bin/pactl" args = "set-sink-volume 0 13%" }
- ]
- '';
- };
+
+ # TODO: Is this even needed? <2024-03-10>
+ # environment.etc.pipewire-pulse-config = {
+ # target = "pipewire/pipewire-pulse.conf.d/pipewire-pulse-config.conf";
+ # text = ''
+ # # Extra scripts can be started here. Setup in default.pa can be moved in
+ # # a script or in pulse.cmd below
+ # context.exec = [
+ # { path = "${pkgs.pulseaudio}/bin/pactl" args = "set-sink-volume 0 13%" }
+ # ]
+ # '';
+ # };
}