diff options
author | David Morgan <djm_uk@protonmail.com> | 2025-08-01 14:12:01 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2025-08-01 14:12:01 +0000 |
commit | 49b0d3389546118ceed19f62f5fef89d43982159 (patch) | |
tree | 0dc56bf598394c24edbe9e488e3432864e873215 /nix-conf/lib | |
parent | 61a3bb4edbce733eab98090543d8863b3b8ddfb1 (diff) | |
download | dotfiles-flakes-3.tar.gz |
WIP: broken flakes-3
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\""]; } |