From 83241c091daec71b1848978a4886e5f8da0f268f Mon Sep 17 00:00:00 2001 From: Tim Jaeger Date: Sat, 4 Feb 2017 12:16:37 +0100 Subject: [PATCH] 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) --- nixos/modules/services/misc/gogs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/misc/gogs.nix b/nixos/modules/services/misc/gogs.nix index 09e5c4fe1ff..ca8fc06e483 100644 --- a/nixos/modules/services/misc/gogs.nix +++ b/nixos/modules/services/misc/gogs.nix @@ -208,6 +208,7 @@ in group = "gogs"; home = cfg.stateDir; createHome = true; + shell = pkgs.bash; }; extraGroups.gogs.gid = config.ids.gids.gogs; };