c6444ecc3c
GitOrigin-RevId: 51e44a13acea71b36245e8bd8c7db53e0a3e61ee
19 lines
351 B
Nix
19 lines
351 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.pasystray = {
|
|
enable = true;
|
|
extraOptions = [ "-g" ];
|
|
};
|
|
|
|
test.stubs = {
|
|
pasystray = { };
|
|
paprefs = { };
|
|
pavucontrol = { };
|
|
};
|
|
|
|
nmt.script = ''
|
|
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/pasystray.service)
|
|
assertFileContent "$serviceFile" ${./expected.service}
|
|
'';
|
|
}
|