10 lines
215 B
Nix
10 lines
215 B
Nix
{ config, ... }: {
|
|
age = {
|
|
identityPaths = [ "/root/age_ed25519" ];
|
|
|
|
secrets = {
|
|
"host_ed25519".file = config.custom.ssh.hostKey;
|
|
"user_ed25519".file = config.custom.ssh.userKey;
|
|
};
|
|
};
|
|
}
|