1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 02:36:54 +00:00
home-manager/tests/modules/services/pasystray/service.nix

12 lines
255 B
Nix
Raw Normal View History

{
services.pasystray = {
enable = true;
extraOptions = [ "-g" ];
};
nmt.script = ''
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/pasystray.service)
assertFileContent "$serviceFile" ${./expected.service}
'';
}