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

17 lines
346 B
Nix
Raw Normal View History

{ 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
'';
}