mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
13 lines
243 B
Nix
13 lines
243 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
programs.pipewire.enable = true;
|
|
|
|
test.stubs.pipewire = { };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/pipewire/pipewire.conf
|
|
assertPathNotExists home-files/.config/pipewire/pipewire.conf.d
|
|
'';
|
|
}
|