Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
326 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ pkgs, lib, ... }:
{
name = "timekpr";
meta.maintainers = [ lib.maintainers.atry ];
nodes.machine =
{ pkgs, lib, ... }:
{
services.timekpr.enable = true;
};
testScript = ''
start_all()
machine.wait_for_file("/etc/timekpr/timekpr.conf")
machine.wait_for_unit("timekpr.service")
'';
}