Allow loading environment variables from files
This commit is contained in:
parent
c9d703464a
commit
338f9963f0
|
@ -46,10 +46,16 @@ let
|
||||||
default = { };
|
default = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
secrets = lib.mkOption {
|
||||||
|
type = lib.types.attrsOf (lib.types.either lib.types.path lib.types.str);
|
||||||
|
description = "A set of environment variables to load from files.";
|
||||||
|
default = { };
|
||||||
|
};
|
||||||
|
|
||||||
secretsScript = lib.mkOption {
|
secretsScript = lib.mkOption {
|
||||||
type = lib.types.lines;
|
type = lib.types.lines;
|
||||||
description = "A script for loading secrets before launching the sync.";
|
description = "A script for loading secrets before launching the sync.";
|
||||||
default = [];
|
default = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkOption {
|
config = lib.mkOption {
|
||||||
|
@ -58,6 +64,15 @@ let
|
||||||
visible = false;
|
visible = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
config = {
|
||||||
|
secretsScript = builtins.concatStringsSep
|
||||||
|
"\n"
|
||||||
|
(builtins.attrValues (
|
||||||
|
builtins.mapAttrs
|
||||||
|
(name: path: "${name}=\"$(cat ${lib.escapeShellArg path})\"")
|
||||||
|
config.secrets));
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
mkWebdavProvider = (
|
mkWebdavProvider = (
|
||||||
|
@ -108,6 +123,10 @@ let
|
||||||
(mkIfNotNull config.username { user = config.username; })
|
(mkIfNotNull config.username { user = config.username; })
|
||||||
(mkIfNotNull config.obscuredPassword { pass = config.obscuredPassword; })
|
(mkIfNotNull config.obscuredPassword { pass = config.obscuredPassword; })
|
||||||
];
|
];
|
||||||
|
|
||||||
|
secrets = lib.optionalAttrs (config.obscuredPasswordFile != null) {
|
||||||
|
RCLONE_WEBDAV_PASS = config.obscuredPasswordFile;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue