infrastructure/packages/sops-rekey.nix

18 lines
321 B
Nix
Raw Normal View History

2024-10-02 15:52:04 +02:00
{
pkgs,
self,
system,
...
}:
pkgs.writeShellApplication {
name = "sops-rekey";
meta.description = "Rekey all sops secrets with changed keys";
runtimeInputs = [
pkgs.findutils
self.packages.${system}.sops
];
text = ''
find . -regex '.*\.sops\..*$' -type f -exec sops updatekeys {} \;
'';
}