Compare commits

...

5 Commits

Author SHA1 Message Date
e490102d74 Merge branch 'test' of gitea into test 2019-12-25 17:47:14 +01:00
51ed142c5f Use mkforce for 'partOf' option 2019-12-25 17:15:42 +01:00
caf4a49ec2 Configure nginx service as dependent on gitea 2019-12-25 16:56:23 +01:00
e8850eff51 Restart nginx after Gitea 2019-12-25 16:24:10 +01:00
91d4b240d7 # This is a combination of 2 commits.
# This is the 1st commit message:

Revert "Disable wizard on Gitea"

This reverts commit d8b415ee16.

# This is the commit message #2:

Remove Gitea socket connection to the DB
2019-12-16 20:28:45 +01:00
2 changed files with 5 additions and 1 deletions

View File

@@ -69,7 +69,7 @@
# Auto-upgrade the system and reboot if needed
system.autoUpgrade = {
enable = true;
allowReboot = false;
allowReboot = true;
};
# Enable zeroconf
@@ -86,6 +86,7 @@
nix.gc = {
automatic = true;
dates = "03:15";
options = "--delete-older-than 14d";
};
# Configure fish shell

View File

@@ -21,4 +21,7 @@
appName = "Gitea";
};
# Restart nginx after startup
systemd.services.nginx.unitConfig.partOf = lib.mkForce [ "gitea.service" ];
}