1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-02-17 05:35:06 +01:00
home-manager/tests/modules/services/trayscale/show-window.nix

14 lines
283 B
Nix
Raw Permalink 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$'
'';
}