infrastructure/packages/sops-rekey/default.nix
Fabian Hauser 04f4afe125
Some checks failed
CI / build (push) Failing after 2m48s
Migrate packages to use callPackage pattern
2024-10-19 19:40:58 +03:00

18 lines
341 B
Nix

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