gogs: fix error on push

Pushing to gogs only works if the `gogs` user's shell is `bash`. For error and
solution, refer to [this SO thread](http://stackoverflow.com/a/22315659)
This commit is contained in:
Tim Jaeger 2017-02-04 12:16:37 +01:00
parent d7bc733507
commit 83241c091d
No known key found for this signature in database
GPG Key ID: D7058FCE974927DE

View File

@ -208,6 +208,7 @@ in
group = "gogs"; group = "gogs";
home = cfg.stateDir; home = cfg.stateDir;
createHome = true; createHome = true;
shell = pkgs.bash;
}; };
extraGroups.gogs.gid = config.ids.gids.gogs; extraGroups.gogs.gid = config.ids.gids.gogs;
}; };