mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
8045eb45a7
Allows a user to, for example, add the `-g` option. Also add a basic test case.
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}
|
|
'';
|
|
}
|