servers/nixos/common/backups.nix

12 lines
215 B
Nix
Raw Normal View History

2025-01-26 18:59:08 -06:00
{lib, ...}: let
inherit (lib) mkOption types;
in {
# Generic Backups.
options.foehammer.backups = {
paths = mkOption {
type = types.nullOr (types.listOf types.str);
default = [];
};
};
}