Update nixos/modules/services/backup/restic.nix

(cherry picked from commit dfa3f7e414)
This commit is contained in:
Winter
2022-07-27 11:57:48 -04:00
committed by github-actions[bot]
parent 7a2fe0893e
commit 88dc88b113

View File

@@ -224,10 +224,12 @@ in
};
package = mkOption {
type = types.package;
default = pkgs.restic;
defaultText = literalExpression "pkgs.restic";
type = types.package;
description = "Restic package to use.";
description = ''
Restic package to use.
'';
};
};
}));