blob: fb2bd19db85d4b503515355006e4546b9749fd9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, ... }:
let
cfg = config.os.srv.restic;
in
{
options.os.srv.restic.enable = lib.mkEnableOption "enables restic backups";
config = lib.mkIf cfg.enable {
assertions = [
];
};
}
|