diff options
Diffstat (limited to 'nix-conf/lib')
-rw-r--r-- | nix-conf/lib/extra-builtins.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nix-conf/lib/extra-builtins.nix b/nix-conf/lib/extra-builtins.nix index 4fb5d03..84696c6 100644 --- a/nix-conf/lib/extra-builtins.nix +++ b/nix-conf/lib/extra-builtins.nix @@ -1,5 +1,4 @@ -# https://github.com/Mic92/sops-nix/issues/624#issuecomment-2382291036 { exec, ... }: { - readSops = name: exec [ "sops" "-d" name ]; + hello = exec ["echo" "\"hello\""]; } |