aboutsummaryrefslogtreecommitdiff
path: root/modules/services/git-daemon/default.nix
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-01-24 13:29:27 +0900
committersefidel <contact@sefidel.net>2024-01-24 18:59:54 +0900
commit8e9b074467006c76768efe04cf1fb1ef9d652c67 (patch)
treefad73c7f94a74c77714c260d1fc0a63e2d205b49 /modules/services/git-daemon/default.nix
downloadinfra-modules-main.zip
initial commitHEADmain
Diffstat (limited to 'modules/services/git-daemon/default.nix')
-rw-r--r--modules/services/git-daemon/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/services/git-daemon/default.nix b/modules/services/git-daemon/default.nix
new file mode 100644
index 0000000..800cd3c
--- /dev/null
+++ b/modules/services/git-daemon/default.nix
@@ -0,0 +1,31 @@
+{ config, lib, ... }:
+
+with lib;
+let
+ cfg = config.modules.services.gitDaemon;
+in
+{
+ # TODO: uncouple with gitolite
+
+ disabledModules = [
+ "services/networking/git-daemon.nix"
+ ];
+
+ imports = [
+ ./_git-daemon-module.nix
+ ];
+
+ options.modules.services.gitDaemon = {
+ enable = mkEnableOption "git daemon";
+ };
+
+ config = mkIf cfg.enable {
+ services.gitDaemon = {
+ enable = true;
+ createUserAndGroup = false;
+ basePath = config.services.gitolite.dataDir + "/repositories";
+ };
+
+ networking.firewall.allowedTCPPorts = [ 9418 ];
+ };
+}