diff options
author | Griffin Smith <root@gws.fyi> | 2020-03-29T16·48-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-03-29T16·48-0400 |
commit | 83ba2c63653e1ef74cccc4888fe0b9f79987e614 (patch) | |
tree | e25947a27b0b472b94260945e2f5346da957202e | |
parent | 59f6680d85de19e3c518614f4cce35a82c85a758 (diff) |
extra args to cloneRepo script
-rw-r--r-- | home/modules/lib/cloneRepo.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/modules/lib/cloneRepo.nix b/home/modules/lib/cloneRepo.nix index 50f6ca2d3d01..3f39ad57bd4c 100644 --- a/home/modules/lib/cloneRepo.nix +++ b/home/modules/lib/cloneRepo.nix @@ -50,7 +50,7 @@ with lib; home.activation = mapAttrs (_: { - url, path, github, onClone, after + url, path, github, onClone, after, ... }: let repoURL = if isNull url then "git@github.com:${github}" else url; in hm.dag.entryAfter (["writeBoundary"] ++ after) '' |