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/trayscale/show-window.nix

14 lines
283 B
Nix
Raw Normal View History

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