1
0

pkgs/clerie-sops: Init sops

This commit is contained in:
2024-04-20 23:20:14 +02:00
parent 84b67ee47d
commit 63c60391cc
9 changed files with 182 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "clerie-sops";
runtimeInputs = with pkgs; [
sops
];
text = ''
exec sops --config ${pkgs.clerie-sops-config} "$@"
'';
}