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/pbgopy/service.nix

13 lines
265 B
Nix
Raw Normal View History

{
services.pbgopy.enable = true;
2020-12-03 03:55:37 +01:00
nmt.script = ''
serviceFile=home-files/.config/systemd/user/pbgopy.service
2020-12-03 03:55:37 +01:00
assertFileExists $serviceFile
2020-12-03 03:55:37 +01:00
assertFileContains $serviceFile \
'ExecStart=@pbgopy@/bin/pbgopy serve --port 9090 --ttl 24h'
'';
2020-12-03 03:55:37 +01:00
}