mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-19 01:21:39 +01:00
8 lines
213 B
Nix
8 lines
213 B
Nix
{ config, ... }:
|
|
{
|
|
sops = {
|
|
age.sshKeyPaths = [ "/home/${config.home.username}/.ssh/id_ed25519" ];
|
|
age.generateKey = false;
|
|
defaultSopsFile = ../../../../secrets/${config.home.username}.yaml;
|
|
};
|
|
}
|