mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
22 lines
465 B
Nix
22 lines
465 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.borgmatic = {
|
|
enable = true;
|
|
frequency = "weekly";
|
|
};
|
|
|
|
test.stubs.borgmatic = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
$(normalizeStorePaths home-files/.config/systemd/user/borgmatic.service) \
|
|
${./basic-configuration.service}
|
|
|
|
assertFileContent \
|
|
home-files/.config/systemd/user/borgmatic.timer \
|
|
${./basic-configuration.timer}
|
|
'';
|
|
};
|
|
}
|