Update audio.nix

This commit is contained in:
ediblerope 2026-03-04 15:00:18 +00:00 committed by GitHub
parent cb5853509d
commit 5e16388888
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,14 +8,14 @@
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.etc."pipewire/pipewire-pulse.d/10-quirk-rules.conf".text = ''
pulse.rules = [
{
matches = [ { application.name = "~Chromium.*" } ]
actions = { quirks = [ block-source-volume ] }
}
]
'';
extraConfig.pulse."10-quirk-rules" = {
"pulse.rules" = [
{
matches = [ { "application.name" = "~Chromium.*"; } ];
actions = { quirks = [ "block-source-volume" ]; };
}
];
};
};
}