flake/nixos/sops.nix

14 lines
264 B
Nix
Raw Normal View History

2024-12-02 20:50:24 -05:00
{ user, ... }:
{
sops = {
defaultSopsFile = ../secrets/secrets.yaml;
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
secrets = {
"zipline" = {
owner = user;
path = "/home/${user}/.secrets/zipline";
};
};
};
}