summaryrefslogtreecommitdiff
path: root/config/services/git/shell-commands/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/services/git/shell-commands/default.nix')
-rw-r--r--config/services/git/shell-commands/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/services/git/shell-commands/default.nix b/config/services/git/shell-commands/default.nix
new file mode 100644
index 0000000..b88e6b0
--- /dev/null
+++ b/config/services/git/shell-commands/default.nix
@@ -0,0 +1,12 @@
+{ lib, pkgs, ... }:
+let
+ repo = import ./repo { inherit lib pkgs; };
+ gitShellCommands = "/srv/git/git-shell-commands";
+in
+{
+ system.activationScripts.buildGitShell.text = ''
+ install --mode u=rX,g=,o= --owner git --group git --directory ${gitShellCommands}
+ rm -rf ${gitShellCommands}/*
+ ln -s ${repo} ${gitShellCommands}/repo
+ '';
+}