2020-02-26 08:11:19 -08:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
2021-03-10 05:08:36 -08:00
|
|
|
nix-bitcoin.secretsSetupMethod = "nixops";
|
|
|
|
|
2020-02-26 08:11:19 -08:00
|
|
|
deployment.keys = builtins.mapAttrs (n: v: {
|
|
|
|
keyFile = "${config.nix-bitcoin.deployment.secretsDir}/${n}";
|
|
|
|
destDir = config.nix-bitcoin.secretsDir;
|
|
|
|
inherit (v) user group permissions;
|
|
|
|
}) config.nix-bitcoin.secrets;
|
|
|
|
|
|
|
|
# nixops makes the secrets directory accessible only for users with group 'key'.
|
|
|
|
# For compatibility with other deployment methods besides nixops, we forego the
|
|
|
|
# use of the 'key' group and make the secrets dir world-readable instead.
|
|
|
|
# This is safe because all containing files have their specific private
|
|
|
|
# permissions set.
|
|
|
|
systemd.services.allowSecretsDirAccess = {
|
|
|
|
requires = [ "keys.target" ];
|
|
|
|
after = [ "keys.target" ];
|
|
|
|
script = "chmod o+x ${config.nix-bitcoin.secretsDir}";
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.targets.nix-bitcoin-secrets = {
|
|
|
|
requires = [ "allowSecretsDirAccess.service" ];
|
|
|
|
after = [ "allowSecretsDirAccess.service" ];
|
|
|
|
};
|
|
|
|
}
|