mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
33 lines
710 B
Nix
33 lines
710 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs.pipewire = {
|
|
enable = true;
|
|
settings = {
|
|
hello = "world";
|
|
what = true;
|
|
oh.wow = "!!!";
|
|
};
|
|
overrides = {
|
|
noisetorch = {
|
|
bawk-bawk = true;
|
|
reduce-noise-level = 0.5;
|
|
};
|
|
nvidia-ai-what = {
|
|
hawk-hawk = true;
|
|
reduce-muffled-sounds = true;
|
|
noise-gate = 5.60;
|
|
abc = [ "d" "e" "f" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
test.stubs.pipewire = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/pipewire/pipewire.conf
|
|
assertFileExists home-files/.config/pipewire/pipewire.conf.d/noisetorch.conf
|
|
assertFileExists home-files/.config/pipewire/pipewire.conf.d/nvidia-ai-what.conf
|
|
'';
|
|
}
|