nixos-config/tests/modules/home-manager/services/borgmatic/basic.nix

13 lines
330 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
2025-01-29 04:48:19 +00:00
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
'';
}