this post was submitted on 19 Jun 2023
2 points (100.0% liked)

nixos

1244 readers
1 users here now

All about NixOS - https://nixos.org/

founded 4 years ago
 

I use agenix for managing some secrets on my nixos-configs. Agenix deploys the unencrypted secrets in the live system, so the secrets cannot be accesed when evaluating the nixos config.

Do you know any way or hack to have secrets inside of nix expressions?

It would be great if that solution would be pure and compatible with nix flakes.

Thanks :)

top 1 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 1 year ago

The only way I know of for this is to use something like git-crypt. You can, for example, have a secrets.nix file that is encrypted in the repo but unencrypted when you do a checkout. This is trivially compatible with Nix Flakes since the file of secrets actually is in plain text on your system.