aboutsummaryrefslogtreecommitdiffstats
path: root/modules/vhack/gi/git-back/module.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-30 14:05:39 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-30 14:05:39 +0200
commitc153a351659e4596acfc31f00bf594343cbfcd68 (patch)
treea9ed83de07711d6424fbea09aad28891bae5bfe4 /modules/vhack/gi/git-back/module.nix
parenthosts/server3: Setup prometheus server in agent mode (diff)
downloadnixos-server-c153a351659e4596acfc31f00bf594343cbfcd68.zip
modules: Use namespaces
That might make it easier in the future to merge different server configs together (and thusly facilitate code-reuse.).
Diffstat (limited to 'modules/vhack/gi/git-back/module.nix')
-rw-r--r--modules/vhack/gi/git-back/module.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/vhack/gi/git-back/module.nix b/modules/vhack/gi/git-back/module.nix
new file mode 100644
index 0000000..90be345
--- /dev/null
+++ b/modules/vhack/gi/git-back/module.nix
@@ -0,0 +1,33 @@
+{
+ config,
+ lib,
+ ...
+}: let
+ cfg = config.vhack.git-back;
+in {
+ options.vhack.git-back = {
+ enable = lib.mkEnableOption "Back integration into git-server";
+
+ domain = lib.mkOption {
+ type = lib.types.str;
+ description = "The domain where to deploy back";
+ };
+ };
+
+ config = lib.mkIf cfg.enable {
+ # vhack.back = {
+ # enable = true;
+ #
+ # user = "git";
+ # group = "git";
+ #
+ # settings = {
+ # scan_path = "${config.services.gitolite.dataDir}/repositories";
+ # project_list = "${config.services.gitolite.dataDir}/projects.list";
+ # root_url = "https://${cfg.domain}";
+ # };
+ # };
+ #
+ # vhack.anubis.instances."${cfg.domain}".target = "http://127.0.0.1:8000";
+ };
+}