nixos/borgbackup: fix extraCompactArgs
Fixes the extraCompactArgs introduced with #224072 as the variable currently isn't added to the script's environment.
This commit is contained in:
parent
3cd664912c
commit
8af23590d3
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ let
|
|||
};
|
||||
environment = {
|
||||
BORG_REPO = cfg.repo;
|
||||
inherit (cfg) extraArgs extraInitArgs extraCreateArgs extraPruneArgs;
|
||||
inherit (cfg) extraArgs extraInitArgs extraCreateArgs extraPruneArgs extraCompactArgs;
|
||||
} // (mkPassEnv cfg) // cfg.environment;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue