1
0

pkgs/clerie-sops: Add clerie-sops-edit for working with multiline string attributes in json

This commit is contained in:
2024-05-01 17:11:36 +02:00
parent 3371f47f68
commit 2970a7d892
5 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-sops-edit";
text = builtins.readFile ./clerie-sops-edit.sh;
runtimeInputs = with pkgs; [
clerie-sops
jq
];
}