diff options
author | Soispha <soispha@vhack.eu> | 2024-02-29 06:54:10 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-01 00:28:28 +0100 |
commit | 9f33b43899dfa0283e481b8055c8a7a3b793f9ff (patch) | |
tree | 898e5c64bb566db1abc9e6de1eb761c4dadede93 | |
parent | fix(hm/conf/unison): Add further files to auto merge (diff) | |
download | nixos-config-9f33b43899dfa0283e481b8055c8a7a3b793f9ff.tar.gz nixos-config-9f33b43899dfa0283e481b8055c8a7a3b793f9ff.zip |
fix(hm/conf/unison): Add missing `diff` dependency for diffs
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/unison/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hm/soispha/conf/unison/default.nix b/hm/soispha/conf/unison/default.nix index 91a348c3..16fc63f1 100644 --- a/hm/soispha/conf/unison/default.nix +++ b/hm/soispha/conf/unison/default.nix @@ -172,7 +172,8 @@ in { dependencies = with pkgs; [ unison openssh # needed to connect to the other server - less # needed for diffs + less # needed to show diffs + diffutils # needed to compute diffs ]; }) ]; |