diff options
author | Soispha <soispha@vhack.eu> | 2024-02-28 20:48:00 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-28 20:48:00 +0100 |
commit | 8d7ab76a06a6f3001bbdbc908f6ec7303627606d (patch) | |
tree | 604d719eac6494b12b273adfb925affa2dd5d283 /hm/soispha/conf | |
parent | fix(hm/conf/unison): Don't pass `links` argument along twice (diff) | |
download | nixos-config-8d7ab76a06a6f3001bbdbc908f6ec7303627606d.zip |
fix(hm/conf/unison): Add `less`, as it's needed to display diffs
Diffstat (limited to 'hm/soispha/conf')
-rw-r--r-- | hm/soispha/conf/unison/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hm/soispha/conf/unison/default.nix b/hm/soispha/conf/unison/default.nix index f37e9871..962dd8ab 100644 --- a/hm/soispha/conf/unison/default.nix +++ b/hm/soispha/conf/unison/default.nix @@ -169,7 +169,11 @@ in { EXTRA_OPTIONS="$EXTRA_OPTIONS $*" '' + script); - dependencies = with pkgs; [unison openssh]; + dependencies = with pkgs; [ + unison + openssh # needed to connect to the other server + less # needed for diffs + ]; }) ]; services.unison = { |