1
0
Fork 0
nixos-config/system/test-timer.nix

13 lines
368 B
Nix
Raw Normal View History

2019-07-31 21:56:52 +00:00
{ pkgs, config, lib, ... }: {
2019-07-26 15:31:26 +00:00
systemd.services."test-and-bump-config" = {
startAt = "20:30";
2019-07-28 22:22:13 +00:00
path = [ pkgs.nix pkgs.gnutar pkgs.gzip pkgs.git pkgs.git-crypt ];
2019-07-26 15:31:26 +00:00
serviceConfig = {
Type = "oneshot";
WorkingDirectory = "/var/cache/gc-links";
2019-08-02 03:17:00 +00:00
ExecStart =
"${(import ../lib/test.nix).test-config}/bin/test-config bump";
2019-07-26 15:31:26 +00:00
};
};
}