fixed sops not decrypting at boot

This commit is contained in:
Gerg-L 2023-03-12 18:01:35 -04:00
parent ca82a01644
commit 04f7e566b4
2 changed files with 4 additions and 8 deletions

View file

@ -2,7 +2,6 @@
pkgs,
self,
config,
lib,
...
}: {
imports = [
@ -13,6 +12,6 @@
];
sops = {
defaultSopsFile = "${self}/systems/${config.networking.hostName}/secrets.yaml";
age.sshKeyPaths = lib.mkForce ["/etc/ssh/ssh_host_ed25519_key"];
age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
};
}