mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 18:18:59 +00:00
13 lines
330 B
Nix
13 lines
330 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.borgmatic.jobs.personal = { settings = { hello = "WORLD"; }; };
|
|
|
|
test.stubs.borgmatic = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/systemd/user/borgmatic-job-personal.service
|
|
assertFileExists home-files/.config/systemd/user/borgmatic-job-personal.timer
|
|
'';
|
|
}
|