diff options
author | Emile <git@emile.space> | 2025-01-23 16:18:23 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2025-01-23 16:18:23 +0100 |
commit | 8997432e6d59f37141ebe77da3eb2d0d669c9249 (patch) | |
tree | f0638abde174c192ea3aa260f0c30ea47196f7d3 /nix/hosts | |
parent | cc082e12657993ddf02e6e28637ac2a7555ebf8e (diff) |
corrino: nix-chache made signingKeys a list
Diffstat (limited to 'nix/hosts')
-rw-r--r-- | nix/hosts/corrino/www/nix-cache/nix-cache.emile.space.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/hosts/corrino/www/nix-cache/nix-cache.emile.space.nix b/nix/hosts/corrino/www/nix-cache/nix-cache.emile.space.nix index 48887ad..7d23720 100644 --- a/nix/hosts/corrino/www/nix-cache/nix-cache.emile.space.nix +++ b/nix/hosts/corrino/www/nix-cache/nix-cache.emile.space.nix @@ -22,7 +22,7 @@ # TODO(emile): manage this using age # signKeyPath = "/var/lib/secrets/harmonia.secret"; - signKeyPath = config.age.secrets.harmonia-signkey.path; + signKeyPaths = [ config.age.secrets.harmonia-signkey.path ]; settings.bind = "[::1]:${toString config.emile.ports.harmonia}"; }; |