diff options
author | Soispha <soispha@vhack.eu> | 2024-02-28 20:47:35 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-28 20:47:35 +0100 |
commit | 1080d8e195f336a6e9902563a3d8484cdbaa0842 (patch) | |
tree | 98bd827b608e7c09a922976c1ed31d2af6a5ed47 | |
parent | feat(hm/conf/unison): Support merging special paths (diff) | |
download | nixos-config-1080d8e195f336a6e9902563a3d8484cdbaa0842.tar.gz nixos-config-1080d8e195f336a6e9902563a3d8484cdbaa0842.zip |
fix(hm/conf/unison): Don't pass `links` argument along twice
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/unison/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hm/soispha/conf/unison/default.nix b/hm/soispha/conf/unison/default.nix index dee32d8e..f37e9871 100644 --- a/hm/soispha/conf/unison/default.nix +++ b/hm/soispha/conf/unison/default.nix @@ -163,6 +163,7 @@ in { export UNISON=${esa unisonPath}; if [ "$1" = "links" ]; then + shift 1; EXTRA_OPTIONS="-links=true"; fi EXTRA_OPTIONS="$EXTRA_OPTIONS $*" |