2021-09-10 21:20:54 +03:00
|
|
|
{ config, options, lib, pkgs, ... }:
|
2020-09-01 07:37:26 +03:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.age;
|
2021-03-02 00:11:02 +03:00
|
|
|
|
|
|
|
# we need at least rage 0.5.0 to support ssh keys
|
|
|
|
rage =
|
|
|
|
if lib.versionOlder pkgs.rage.version "0.5.0"
|
2021-03-16 20:28:00 +03:00
|
|
|
then pkgs.callPackage ../pkgs/rage.nix { }
|
2021-03-02 00:11:02 +03:00
|
|
|
else pkgs.rage;
|
2021-12-06 02:08:18 +03:00
|
|
|
ageBin = config.age.ageBin;
|
2020-09-18 21:59:01 +03:00
|
|
|
|
2020-09-01 07:37:26 +03:00
|
|
|
users = config.users.users;
|
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
newGeneration = ''
|
|
|
|
_agenix_generation="$(basename "$(readlink ${cfg.secretsDir})" || echo 0)"
|
|
|
|
(( ++_agenix_generation ))
|
|
|
|
echo "[agenix] creating new generation in ${cfg.secretsMountPoint}/$_agenix_generation"
|
|
|
|
mkdir -p "${cfg.secretsMountPoint}"
|
|
|
|
chmod 0751 "${cfg.secretsMountPoint}"
|
|
|
|
grep -q "${cfg.secretsMountPoint} ramfs" /proc/mounts || mount -t ramfs none "${cfg.secretsMountPoint}" -o nodev,nosuid,mode=0751
|
|
|
|
mkdir -p "${cfg.secretsMountPoint}/$_agenix_generation"
|
|
|
|
chmod 0751 "${cfg.secretsMountPoint}/$_agenix_generation"
|
|
|
|
'';
|
|
|
|
|
2021-12-06 03:05:06 +03:00
|
|
|
identities = builtins.concatStringsSep " " (map (path: "-i ${path}") cfg.identityPaths);
|
2022-07-10 21:47:58 +03:00
|
|
|
|
|
|
|
setTruePath = secretType: ''
|
2021-11-08 20:45:34 +03:00
|
|
|
${if secretType.symlink then ''
|
|
|
|
_truePath="${cfg.secretsMountPoint}/$_agenix_generation/${secretType.name}"
|
|
|
|
'' else ''
|
|
|
|
_truePath="${secretType.path}"
|
|
|
|
''}
|
2022-07-10 21:47:58 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
installSecret = secretType: ''
|
|
|
|
${setTruePath secretType}
|
2021-02-25 13:23:15 +03:00
|
|
|
echo "decrypting '${secretType.file}' to '$_truePath'..."
|
|
|
|
TMP_FILE="$_truePath.tmp"
|
|
|
|
mkdir -p "$(dirname "$_truePath")"
|
2022-02-22 02:05:42 +03:00
|
|
|
[ "${secretType.path}" != "${cfg.secretsDir}/${secretType.name}" ] && mkdir -p "$(dirname "${secretType.path}")"
|
2021-05-13 06:11:17 +03:00
|
|
|
(
|
|
|
|
umask u=r,g=,o=
|
2022-03-08 18:58:08 +03:00
|
|
|
test -f "${secretType.file}" || echo '[agenix] WARNING: encrypted file ${secretType.file} does not exist!'
|
|
|
|
test -d "$(dirname "$TMP_FILE")" || echo "[agenix] WARNING: $(dirname "$TMP_FILE") does not exist!"
|
2021-05-13 06:11:17 +03:00
|
|
|
LANG=${config.i18n.defaultLocale} ${ageBin} --decrypt ${identities} -o "$TMP_FILE" "${secretType.file}"
|
|
|
|
)
|
2020-09-03 06:49:24 +03:00
|
|
|
chmod ${secretType.mode} "$TMP_FILE"
|
2021-02-25 13:23:15 +03:00
|
|
|
mv -f "$TMP_FILE" "$_truePath"
|
2021-11-08 20:45:34 +03:00
|
|
|
|
|
|
|
${optionalString secretType.symlink ''
|
2022-02-22 02:05:42 +03:00
|
|
|
[ "${secretType.path}" != "${cfg.secretsDir}/${secretType.name}" ] && ln -sfn "${cfg.secretsDir}/${secretType.name}" "${secretType.path}"
|
2021-11-08 20:45:34 +03:00
|
|
|
''}
|
2020-09-02 00:27:54 +03:00
|
|
|
'';
|
2020-09-10 06:41:26 +03:00
|
|
|
|
2022-03-08 18:58:08 +03:00
|
|
|
testIdentities = map (path: ''
|
|
|
|
test -f ${path} || echo '[agenix] WARNING: config.age.identityPaths entry ${path} not present!'
|
2022-07-10 21:47:58 +03:00
|
|
|
'') cfg.identityPaths;
|
|
|
|
|
|
|
|
cleanupAndLink = ''
|
|
|
|
_agenix_generation="$(basename "$(readlink ${cfg.secretsDir})" || echo 0)"
|
|
|
|
(( ++_agenix_generation ))
|
|
|
|
echo "[agenix] symlinking new secrets to ${cfg.secretsDir} (generation $_agenix_generation)..."
|
|
|
|
ln -sfn "${cfg.secretsMountPoint}/$_agenix_generation" ${cfg.secretsDir}
|
|
|
|
|
|
|
|
(( _agenix_generation > 1 )) && {
|
|
|
|
echo "[agenix] removing old secrets (generation $(( _agenix_generation - 1 )))..."
|
|
|
|
rm -rf "${cfg.secretsMountPoint}/$(( _agenix_generation - 1 ))"
|
|
|
|
}
|
|
|
|
'';
|
2022-03-08 18:58:08 +03:00
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
installSecrets = builtins.concatStringsSep "\n" (
|
|
|
|
[ "echo '[agenix] decrypting secrets...'" ]
|
|
|
|
++ testIdentities
|
|
|
|
++ (map installSecret (builtins.attrValues cfg.secrets))
|
|
|
|
++ [ cleanupAndLink ]
|
|
|
|
);
|
2021-05-10 00:18:20 +03:00
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
chownSecret = secretType: ''
|
|
|
|
${setTruePath secretType}
|
|
|
|
chown ${secretType.owner}:${secretType.group} "$_truePath"
|
|
|
|
'';
|
2020-09-10 06:41:26 +03:00
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
# chown the secrets mountpoint and the current generation to the keys group
|
|
|
|
# instead of leaving it root:root.
|
|
|
|
chownMountPoint = ''
|
|
|
|
chown :keys "${cfg.secretsMountPoint}" "${cfg.secretsMountPoint}/$_agenix_generation"
|
|
|
|
'';
|
|
|
|
|
|
|
|
chownSecrets = builtins.concatStringsSep "\n" (
|
|
|
|
[ "echo '[agenix] chowning...'" ]
|
|
|
|
++ [ chownMountPoint ]
|
|
|
|
++ (map chownSecret (builtins.attrValues cfg.secrets)));
|
2020-09-01 07:37:26 +03:00
|
|
|
|
|
|
|
secretType = types.submodule ({ config, ... }: {
|
|
|
|
options = {
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = config._module.args.name;
|
|
|
|
description = ''
|
2022-02-22 02:05:42 +03:00
|
|
|
Name of the file used in ''${cfg.secretsDir}
|
2020-09-01 07:37:26 +03:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
file = mkOption {
|
2020-09-03 21:24:33 +03:00
|
|
|
type = types.path;
|
2020-09-01 07:37:26 +03:00
|
|
|
description = ''
|
|
|
|
Age file the secret is loaded from.
|
|
|
|
'';
|
|
|
|
};
|
2020-09-03 21:24:33 +03:00
|
|
|
path = mkOption {
|
2021-03-02 00:10:52 +03:00
|
|
|
type = types.str;
|
2022-02-22 02:05:42 +03:00
|
|
|
default = "${cfg.secretsDir}/${config.name}";
|
2021-03-02 00:10:52 +03:00
|
|
|
description = ''
|
|
|
|
Path where the decrypted secret is installed.
|
|
|
|
'';
|
|
|
|
};
|
2020-09-01 07:37:26 +03:00
|
|
|
mode = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "0400";
|
|
|
|
description = ''
|
2021-11-24 20:00:28 +03:00
|
|
|
Permissions mode of the decrypted secret in a format understood by chmod.
|
2020-09-01 07:37:26 +03:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
owner = mkOption {
|
|
|
|
type = types.str;
|
2021-05-10 00:18:20 +03:00
|
|
|
default = "0";
|
2020-09-01 07:37:26 +03:00
|
|
|
description = ''
|
2021-11-24 20:00:28 +03:00
|
|
|
User of the decrypted secret.
|
2020-09-01 07:37:26 +03:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
2021-05-10 00:18:20 +03:00
|
|
|
default = users.${config.owner}.group or "0";
|
2020-09-01 07:37:26 +03:00
|
|
|
description = ''
|
2021-11-24 20:00:28 +03:00
|
|
|
Group of the decrypted secret.
|
2020-09-01 07:37:26 +03:00
|
|
|
'';
|
|
|
|
};
|
2021-11-08 20:45:34 +03:00
|
|
|
symlink = mkEnableOption "symlinking secrets to their destination" // { default = true; };
|
2020-09-01 07:37:26 +03:00
|
|
|
};
|
|
|
|
});
|
2021-03-02 00:10:52 +03:00
|
|
|
in
|
|
|
|
{
|
2021-12-06 03:05:06 +03:00
|
|
|
|
|
|
|
imports = [
|
|
|
|
(mkRenamedOptionModule [ "age" "sshKeyPaths" ] [ "age" "identityPaths" ])
|
|
|
|
];
|
|
|
|
|
2020-09-01 07:37:26 +03:00
|
|
|
options.age = {
|
2021-12-06 02:08:18 +03:00
|
|
|
ageBin = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "${rage}/bin/rage";
|
|
|
|
description = ''
|
|
|
|
The age executable to use.
|
|
|
|
'';
|
|
|
|
};
|
2020-09-01 07:37:26 +03:00
|
|
|
secrets = mkOption {
|
|
|
|
type = types.attrsOf secretType;
|
2021-03-02 00:10:52 +03:00
|
|
|
default = { };
|
2020-09-01 07:37:26 +03:00
|
|
|
description = ''
|
|
|
|
Attrset of secrets.
|
|
|
|
'';
|
|
|
|
};
|
2022-02-22 02:05:42 +03:00
|
|
|
secretsDir = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = "/run/agenix";
|
|
|
|
description = ''
|
|
|
|
Folder where secrets are symlinked to
|
|
|
|
'';
|
|
|
|
};
|
2021-02-25 13:23:15 +03:00
|
|
|
secretsMountPoint = mkOption {
|
|
|
|
type = types.addCheck types.str
|
|
|
|
(s:
|
|
|
|
(builtins.match "[ \t\n]*" s) == null # non-empty
|
|
|
|
&& (builtins.match ".+/" s) == null) # without trailing slash
|
|
|
|
// { description = "${types.str.description} (with check: non-empty without trailing slash)"; };
|
2021-11-08 20:50:20 +03:00
|
|
|
default = "/run/agenix.d";
|
2022-02-22 02:05:42 +03:00
|
|
|
defaultText = "/run/agenix.d";
|
2021-02-25 13:23:15 +03:00
|
|
|
description = ''
|
2022-02-22 02:05:42 +03:00
|
|
|
Where secrets are created before they are symlinked to ''${cfg.secretsDir}
|
2021-02-25 13:23:15 +03:00
|
|
|
'';
|
|
|
|
};
|
2021-12-06 03:05:06 +03:00
|
|
|
identityPaths = mkOption {
|
2020-09-01 07:37:26 +03:00
|
|
|
type = types.listOf types.path;
|
2021-03-02 00:10:52 +03:00
|
|
|
default =
|
|
|
|
if config.services.openssh.enable then
|
|
|
|
map (e: e.path) (lib.filter (e: e.type == "rsa" || e.type == "ed25519") config.services.openssh.hostKeys)
|
|
|
|
else [ ];
|
2020-09-01 07:37:26 +03:00
|
|
|
description = ''
|
2020-09-03 21:24:33 +03:00
|
|
|
Path to SSH keys to be used as identities in age decryption.
|
2020-09-01 07:37:26 +03:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-09-17 01:39:38 +03:00
|
|
|
config = mkIf (cfg.secrets != { }) {
|
|
|
|
assertions = [{
|
2021-12-06 03:05:06 +03:00
|
|
|
assertion = cfg.identityPaths != [ ];
|
|
|
|
message = "age.identityPaths must be set.";
|
2021-09-17 01:39:38 +03:00
|
|
|
}];
|
2020-09-10 06:41:26 +03:00
|
|
|
|
2021-02-25 13:23:15 +03:00
|
|
|
# Create a new directory full of secrets for symlinking (this helps
|
|
|
|
# ensure removed secrets are actually removed, or at least become
|
|
|
|
# invalid symlinks).
|
2022-07-10 19:39:23 +03:00
|
|
|
system.activationScripts.agenixNewGeneration = {
|
2022-07-10 21:47:58 +03:00
|
|
|
text = newGeneration;
|
2022-07-10 19:39:23 +03:00
|
|
|
deps = [
|
|
|
|
"specialfs"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
system.activationScripts.agenixInstall = {
|
|
|
|
text = installSecrets;
|
2022-01-07 00:50:56 +03:00
|
|
|
deps = [
|
2022-07-10 21:47:58 +03:00
|
|
|
"agenixNewGeneration"
|
|
|
|
"specialfs"
|
2022-01-07 00:50:56 +03:00
|
|
|
];
|
|
|
|
};
|
2021-02-25 13:23:15 +03:00
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
# So user passwords can be encrypted.
|
|
|
|
system.activationScripts.users.deps = [ "agenixInstall" ];
|
2021-09-10 21:20:54 +03:00
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
# Change ownership and group after users and groups are made.
|
|
|
|
system.activationScripts.agenixChown = {
|
|
|
|
text = chownSecrets;
|
2021-02-25 13:23:15 +03:00
|
|
|
deps = [
|
|
|
|
"users"
|
|
|
|
"groups"
|
|
|
|
];
|
|
|
|
};
|
2021-09-10 21:20:54 +03:00
|
|
|
|
2022-07-10 21:47:58 +03:00
|
|
|
# So other activation scripts can depend on agenix being done.
|
|
|
|
system.activationScripts.agenix = {
|
|
|
|
text = "";
|
|
|
|
deps = [ "agenixChown"];
|
2021-02-25 13:23:15 +03:00
|
|
|
};
|
2021-09-17 01:39:38 +03:00
|
|
|
};
|
2021-09-10 21:20:54 +03:00
|
|
|
|
2020-09-01 07:37:26 +03:00
|
|
|
}
|