summaryrefslogtreecommitdiff
path: root/config/services/git/shell-commands/default.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2026-01-25 20:19:01 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2026-01-25 20:48:23 +0100
commitd00f8fb1791e6f412d4a8898b53cdbe3cac20daa (patch)
tree9d493ea1c2af4721be7a27f72470dcb818fd2c47 /config/services/git/shell-commands/default.nix
parentfbb1709e1504280ca5576f91d85bb7f5dfeff37a (diff)
git: add shell-commands
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
+ '';
+}