1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 01:48:31 +02:00
home-manager/tests/modules/services/pbgopy/service.nix

17 lines
350 B
Nix
Raw Normal View History

2020-12-03 03:55:37 +01:00
{ config, pkgs, ... }: {
config = {
services.pbgopy.enable = true;
test.stubs.pbgopy = { };
2020-12-03 03:55:37 +01:00
nmt.script = ''
serviceFile=home-files/.config/systemd/user/pbgopy.service
assertFileExists $serviceFile
assertFileContains $serviceFile \
2021-04-22 23:46:05 +02:00
'ExecStart=@pbgopy@/bin/pbgopy serve --port 9090 --ttl 24h'
2020-12-03 03:55:37 +01:00
'';
};
}