1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00
home-manager/tests/modules/services/trayscale/hide-window.nix
Callum Leslie 4c8647b1ed
trayscale: add module
Trayscale is an unofficial GUI wrapper around the Tailscale CLI
client.

PR #5803
2024-09-13 10:59:31 +02:00

15 lines
343 B
Nix

{ ... }: {
services.trayscale = {
enable = true;
hideWindow = true;
};
test.stubs = { trayscale = { }; };
nmt.script = ''
serviceFile=home-files/.config/systemd/user/trayscale.service
assertFileExists $serviceFile
assertFileRegex $serviceFile \
'^ExecStart=@trayscale@/bin/trayscale --hide-window$'
'';
}