Commit 8af23590 authored by Sophie Tauchert's avatar Sophie Tauchert Committed by Bjørn Forsman
Browse files

nixos/borgbackup: fix extraCompactArgs

Fixes the extraCompactArgs introduced with #224072 as the variable
currently isn't added to the script's environment.
parent 3cd66491
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    };