2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
2010-12-17 07:33:20 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.gitDaemon;
|
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2010-12-17 07:33:20 +00:00
|
|
|
options = {
|
|
|
|
services.gitDaemon = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2014-11-07 12:49:03 +00:00
|
|
|
type = types.bool;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
2016-01-06 06:50:18 +00:00
|
|
|
Enable Git daemon, which allows public hosting of git repositories
|
2010-12-17 07:33:20 +00:00
|
|
|
without any access controls. This is mostly intended for read-only access.
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2010-12-17 07:33:20 +00:00
|
|
|
You can allow write access by setting daemon.receivepack configuration
|
|
|
|
item of the repository to true. This is solely meant for a closed LAN setting
|
|
|
|
where everybody is friendly.
|
|
|
|
|
|
|
|
If you need any access controls, use something else.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
basePath = mkOption {
|
2014-11-07 12:49:03 +00:00
|
|
|
type = types.str;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = "";
|
|
|
|
example = "/srv/git/";
|
|
|
|
description = ''
|
|
|
|
Remap all the path requests as relative to the given path. For example,
|
|
|
|
if you set base-path to /srv/git, then if you later try to pull
|
|
|
|
git://example.com/hello.git, Git daemon will interpret the path as /srv/git/hello.git.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
exportAll = mkOption {
|
2014-11-07 12:49:03 +00:00
|
|
|
type = types.bool;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Publish all directories that look like Git repositories (have the objects
|
|
|
|
and refs subdirectories), even if they do not have the git-daemon-export-ok file.
|
|
|
|
|
|
|
|
If disabled, you need to touch .git/git-daemon-export-ok in each repository
|
|
|
|
you want the daemon to publish.
|
|
|
|
|
|
|
|
Warning: enabling this without a repository whitelist or basePath
|
|
|
|
publishes every git repository you have.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
repositories = mkOption {
|
2014-11-07 12:49:03 +00:00
|
|
|
type = types.listOf types.str;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = [];
|
|
|
|
example = [ "/srv/git" "/home/user/git/repo2" ];
|
|
|
|
description = ''
|
|
|
|
A whitelist of paths of git repositories, or directories containing repositories
|
|
|
|
all of which would be published. Paths must not end in "/".
|
|
|
|
|
|
|
|
Warning: leaving this empty and enabling exportAll publishes all
|
|
|
|
repositories in your filesystem or basePath if specified.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
listenAddress = mkOption {
|
2014-11-07 12:49:03 +00:00
|
|
|
type = types.str;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = "";
|
|
|
|
example = "example.com";
|
|
|
|
description = "Listen on a specific IP address or hostname.";
|
|
|
|
};
|
|
|
|
|
|
|
|
port = mkOption {
|
2021-05-25 18:27:42 +01:00
|
|
|
type = types.port;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = 9418;
|
|
|
|
description = "Port to listen on.";
|
|
|
|
};
|
|
|
|
|
|
|
|
options = mkOption {
|
2014-11-07 12:49:03 +00:00
|
|
|
type = types.str;
|
2010-12-17 07:33:20 +00:00
|
|
|
default = "";
|
|
|
|
description = "Extra configuration options to be passed to Git daemon.";
|
|
|
|
};
|
|
|
|
|
2014-11-07 12:49:45 +00:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "git";
|
|
|
|
description = "User under which Git daemon would be running.";
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "git";
|
|
|
|
description = "Group under which Git daemon would be running.";
|
|
|
|
};
|
|
|
|
|
2010-12-17 07:33:20 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2020-02-26 13:05:00 +00:00
|
|
|
users.users = optionalAttrs (cfg.user == "git") {
|
2019-09-14 18:51:29 +01:00
|
|
|
git = {
|
2010-12-17 07:33:20 +00:00
|
|
|
uid = config.ids.uids.git;
|
2021-08-08 13:00:00 +01:00
|
|
|
group = "git";
|
2010-12-17 07:33:20 +00:00
|
|
|
description = "Git daemon user";
|
|
|
|
};
|
2019-09-14 18:51:29 +01:00
|
|
|
};
|
2010-12-17 07:33:20 +00:00
|
|
|
|
2020-02-26 13:05:00 +00:00
|
|
|
users.groups = optionalAttrs (cfg.group == "git") {
|
2019-09-14 18:51:29 +01:00
|
|
|
git.gid = config.ids.gids.git;
|
|
|
|
};
|
2010-12-17 07:33:20 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
systemd.services.git-daemon = {
|
2016-09-10 17:03:59 +01:00
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
2016-01-06 06:50:18 +00:00
|
|
|
script = "${pkgs.git}/bin/git daemon --reuseaddr "
|
2014-02-01 10:48:00 +00:00
|
|
|
+ (optionalString (cfg.basePath != "") "--base-path=${cfg.basePath} ")
|
2010-12-17 07:33:20 +00:00
|
|
|
+ (optionalString (cfg.listenAddress != "") "--listen=${cfg.listenAddress} ")
|
2014-11-07 12:49:45 +00:00
|
|
|
+ "--port=${toString cfg.port} --user=${cfg.user} --group=${cfg.group} ${cfg.options} "
|
2014-11-07 12:50:01 +00:00
|
|
|
+ "--verbose " + (optionalString cfg.exportAll "--export-all ") + concatStringsSep " " cfg.repositories;
|
2010-12-17 07:33:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
}
|