fix: Make configuration installable
This commit is contained in:
parent
dd929d89d3
commit
8a2f7309ec
4 changed files with 44 additions and 33 deletions
|
@ -9,10 +9,10 @@ in
|
|||
sops = {
|
||||
defaultSopsFile = "${secretspath}/secrets.yaml";
|
||||
age = {
|
||||
# I'd prefer different OpenSSH keys for different hosts so I'm not 100% screwed if one of my devices get compromised.
|
||||
# Therefore, we set a custom path for the sops key.
|
||||
sshKeyPaths = ["/var/lib/sops-nix/ssh_host_ed25519_key"];
|
||||
keyFile = "/var/lib/sops-nix/key.txt";
|
||||
# I'd prefer different OpenSSH keys for different hosts so I'm not 100% screwed if one of my devices get compromised (SSH traffic potentially being decrypted and analyzed).
|
||||
# Therefore, we set a custom path for the sops key & let the SSH key be generated automagically.
|
||||
sshKeyPaths = ["/persist/var/lib/sops-nix/ssh_host_ed25519_key"];
|
||||
keyFile = "/persist/var/lib/sops-nix/key.txt";
|
||||
generateKey = false;
|
||||
};
|
||||
secrets = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue