Files
.dotfiles/system/security/sops.nix
T
2026-08-03 07:16:49 -06:00

11 lines
307 B
Nix

{ config, pkgs, ... }:
{
sops.defaultSopsFile = ../../secrets/secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets."vaultwarden_clientid".owner = config.users.users.jashton.name;
sops.secrets."vaultwarden_clientsecret".owner = config.users.users.jashton.name;
}