mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
12 lines
255 B
Nix
12 lines
255 B
Nix
|
{
|
||
|
services.pasystray = {
|
||
|
enable = true;
|
||
|
extraOptions = [ "-g" ];
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/pasystray.service)
|
||
|
assertFileContent "$serviceFile" ${./expected.service}
|
||
|
'';
|
||
|
}
|