1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 22:07:30 +02:00
home-manager/tests/modules/services/trayscale/show-window.nix

16 lines
330 B
Nix
Raw Normal View History

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