feat(rsync-backup): honor gitignore
This commit is contained in:
parent
620783a7a3
commit
d68c5a09fe
1 changed files with 19 additions and 7 deletions
|
@ -11,7 +11,9 @@ let
|
||||||
mkEnableOption
|
mkEnableOption
|
||||||
mkOption
|
mkOption
|
||||||
concatStringsSep
|
concatStringsSep
|
||||||
|
concatLists
|
||||||
;
|
;
|
||||||
|
inherit (lib.lists) optionals;
|
||||||
inherit (lib.types)
|
inherit (lib.types)
|
||||||
listOf
|
listOf
|
||||||
nonEmptyStr
|
nonEmptyStr
|
||||||
|
@ -19,6 +21,7 @@ let
|
||||||
enum
|
enum
|
||||||
str
|
str
|
||||||
port
|
port
|
||||||
|
bool
|
||||||
;
|
;
|
||||||
cfg = config.modules.services.rsync-backup;
|
cfg = config.modules.services.rsync-backup;
|
||||||
in
|
in
|
||||||
|
@ -50,8 +53,13 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
exclude = mkOption {
|
exclude = mkOption {
|
||||||
type = str;
|
type = listOf str;
|
||||||
default = "";
|
default = [ ".git" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
followGitignore = mkOption {
|
||||||
|
type = bool;
|
||||||
|
default = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
target = {
|
target = {
|
||||||
|
@ -111,11 +119,15 @@ in
|
||||||
|
|
||||||
flagsFinal = mkOption {
|
flagsFinal = mkOption {
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
default = cfg.flags ++ [
|
default = concatLists [
|
||||||
(mkIf cfg.incremental.enable "--delete")
|
cfg.flags
|
||||||
(mkIf (cfg.exclude != "") "--exclude=\"${cfg.exclude}\"")
|
(optionals cfg.incremental.enable [
|
||||||
(mkIf cfg.incremental.enable "--backup-dir=\"${cfg.incremental.finalIncrementPath}\"")
|
"--delete"
|
||||||
"--port=${toString cfg.port}"
|
"--backup-dir='${cfg.incremental.finalIncrementPath}'"
|
||||||
|
])
|
||||||
|
(optionals cfg.followGitignore [ "--filter=':- .gitignore'" ])
|
||||||
|
[ "--port=${toString cfg.port}" ]
|
||||||
|
(map (ex: "--exclude='${ex}'") cfg.exclude)
|
||||||
];
|
];
|
||||||
apply = concatStringsSep " ";
|
apply = concatStringsSep " ";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue