12 lines
215 B
Nix
12 lines
215 B
Nix
|
|
{lib, ...}: let
|
||
|
|
inherit (lib) mkOption types;
|
||
|
|
in {
|
||
|
|
# Generic Backups.
|
||
|
|
options.foehammer.backups = {
|
||
|
|
paths = mkOption {
|
||
|
|
type = types.nullOr (types.listOf types.str);
|
||
|
|
default = [];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|