infrastructure/packages/sops/default.nix

22 lines
431 B
Nix
Raw Normal View History

2024-10-02 15:52:04 +02:00
{
gitMinimal,
nix,
sops,
writeShellApplication,
2024-10-02 15:52:04 +02:00
...
}:
writeShellApplication {
2024-10-02 15:52:04 +02:00
name = "sops";
meta.description = "Run SOPS with the generated configuration";
runtimeInputs = [
2024-10-02 15:52:04 +02:00
sops
gitMinimal
nix
];
text = ''
FLAKE_ROOT="$(git rev-parse --show-toplevel)"
nix build --out-link "$FLAKE_ROOT/.sops.yaml" "$FLAKE_ROOT#sops-config"
sops --config "''${FLAKE_ROOT}/.sops.yaml" "''${@}"
'';
}