diff options
author | Alan Pearce | 2024-06-26 19:40:12 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-26 19:40:12 +0200 |
commit | 1660d5ae86989137202946b8319af33215393509 (patch) | |
tree | ec29a689a4a0008ee4c2ddcf9054531854a55488 | |
parent | 4ce1f1236a7615676781bc7278a1ad6cbdd415b5 (diff) | |
download | nixfiles-1660d5ae86989137202946b8319af33215393509.tar.lz nixfiles-1660d5ae86989137202946b8319af33215393509.tar.zst nixfiles-1660d5ae86989137202946b8319af33215393509.zip |
git-server: remove unused binding
-rw-r--r-- | system/settings/services/git-server.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/settings/services/git-server.nix b/system/settings/services/git-server.nix index 54e8560c..e8fe6360 100644 --- a/system/settings/services/git-server.nix +++ b/system/settings/services/git-server.nix @@ -4,7 +4,7 @@ , ... }: let - inherit (lib) pipe flatten concatMapAttrs mergeAttrsList mapAttrsToList; + inherit (lib) pipe flatten concatMapAttrs mapAttrsToList; inherit (import ../../../lib/caddy.nix { inherit lib; }) security-headers; repos = "${config.services.gitolite.dataDir}/repositories"; |