mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
19 lines
298 B
Nix
19 lines
298 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
name = "timekpr";
|
|
meta.maintainers = [ lib.maintainers.atry ];
|
|
|
|
containers.machine = {
|
|
services.timekpr.enable = true;
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_file("/etc/timekpr/timekpr.conf")
|
|
machine.wait_for_unit("timekpr.service")
|
|
'';
|
|
}
|