summaryrefslogtreecommitdiffstats
path: root/modules/tv/git/cgit.nix
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-06-19 01:55:07 +0200
committertv <tv@shackspace.de>2015-06-19 01:55:07 +0200
commit81797b6a4ca4159d4b857294375e76aaa313fcd2 (patch)
treeb35988a4e2fcd07e0d0f051eb761225b0b36146b /modules/tv/git/cgit.nix
parent501fdb53c10edfd3328646377beee35568daa1e0 (diff)
tv git: allow repo section naming
Diffstat (limited to 'modules/tv/git/cgit.nix')
-rw-r--r--modules/tv/git/cgit.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/tv/git/cgit.nix b/modules/tv/git/cgit.nix
index edee19909..7f58fcf60 100644
--- a/modules/tv/git/cgit.nix
+++ b/modules/tv/git/cgit.nix
@@ -61,6 +61,7 @@ in
${concatMapStringsSep "\n" (repo: ''
repo.url=${repo.name}
repo.path=${cfg.dataDir}/${repo.name}
+ ${optionalString (repo.section != null) "repo.section=${repo.section}"}
${optionalString (repo.desc != null) "repo.desc=${repo.desc}"}
'') (filter isPublicRepo (attrValues cfg.repos))}
'';