sops: switch to id_ed25519 keys

This commit is contained in:
Leonardo Eugênio 2025-03-07 19:50:22 -03:00
parent 21d747cb71
commit 1a4fd19596
5 changed files with 71 additions and 98 deletions

View file

@ -1,12 +1,15 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
sops-master
sops
gnupg
];
sops = {
defaultSopsFile = ../secrets/test.yaml;
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
age.sshKeyPaths = [
"/etc/ssh/ssh_host_ed25519_key"
"/home/lelgenio/.ssh/id_ed25519"
];
};
}