mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 09:40:47 +03:00
move identities definition to top too
This commit is contained in:
parent
4b6b3bba3d
commit
c77d82e784
1 changed files with 1 additions and 4 deletions
|
@ -6,6 +6,7 @@ let
|
|||
cfg = config.age;
|
||||
users = config.users.users;
|
||||
|
||||
identities = builtins.concatStringsSep " " (map (path: "-i ${path}") cfg.sshKeyPaths);
|
||||
installSecret = secretType: ''
|
||||
TMP_DIR=$(mktemp -d)
|
||||
TMP_FILE="$TMP_DIR/file"
|
||||
|
@ -13,7 +14,6 @@ let
|
|||
install -o '${secretType.owner}' -g '${secretType.group}' -m '${secretType.mode}' "$TMP_FILE" '${secretType.path}'
|
||||
rm -rf "$TMP_DIR"
|
||||
'';
|
||||
|
||||
installAllSecrets = builtins.concatStringsSep (map installSecret (builtins.attrValues cfg.secrets));
|
||||
|
||||
secretType = types.submodule ({ config, ... }: {
|
||||
|
@ -65,9 +65,6 @@ let
|
|||
};
|
||||
};
|
||||
});
|
||||
|
||||
identities = builtins.concatStringsSep " " (map (path: "-i ${path}") cfg.sshKeyPaths);
|
||||
|
||||
in {
|
||||
options.age = {
|
||||
secrets = mkOption {
|
||||
|
|
Loading…
Reference in a new issue