Skip to content

Commit

Permalink
Merge branch 'fc-22.11-dev' into fc-22.11-staging
Browse files Browse the repository at this point in the history
  • Loading branch information
dpausp committed May 11, 2023
2 parents 493bdda + ba6816b commit b0e6f96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions nixos/platform/collect-garbage-userscan.exclude
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
**/journal/
**/lucene/
**/solr/data/
**/nixpkgs-*/
# Files in sub-directories to ignore (anywhere in the home directory)
**/.local/share/fish/fish_history
**/diagnostic.data/metrics.*
Expand Down
6 changes: 6 additions & 0 deletions nixos/roles/gitlab.nix
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@ in
# Needed for Git via SSH.
users.users.gitlab.extraGroups = [ "login" ];

# ensure that gitlab is restarted again, when stopped due to a dependency
# (e.g. postgresql) being stopped and started again
systemd.services.gitlab = {
wantedBy = lib.mkForce [];
requiredBy = [ "gitlab.target" ];
};
})

(lib.mkIf (cfg.enable && cfg.extraSecrets != []) {
Expand Down

0 comments on commit b0e6f96

Please sign in to comment.