summaryrefslogtreecommitdiff
path: root/host/software/code.kummerlaender.eu.nix
diff options
context:
space:
mode:
Diffstat (limited to 'host/software/code.kummerlaender.eu.nix')
-rw-r--r--host/software/code.kummerlaender.eu.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/host/software/code.kummerlaender.eu.nix b/host/software/code.kummerlaender.eu.nix
deleted file mode 100644
index b2507e4..0000000
--- a/host/software/code.kummerlaender.eu.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ pkgs, ... }:
-
-{
- services = {
- gitea = {
- enable = true;
- database.type = "sqlite3";
-
- appName = "~/projects";
- domain = "code.kummerlaender.eu";
- rootUrl = "https://code.kummerlaender.eu/";
- httpPort = 3000;
-
- extraConfig = ''
- [server]
- LANDING_PAGE = "explore"
- [service]
- DISABLE_REGISTRATION = true
- SHOW_REGISTRATION_BUTTON = false
- [other]
- SHOW_FOOTER_VERSION = false
- SHOW_FOOTER_TEMPLATE_LOAD_TIME = false
- [api]
- ENABLE_SWAGGER_ENDPOINT = false
- [picture]
- DISABLE_GRAVATAR = true
- [indexer]
- REPO_INDEXER_ENABLED = true
- '';
- };
-
- nginx.virtualHosts."code.kummerlaender.eu" = {
- addSSL = true;
- enableACME = true;
- locations = {
- "/" = {
- proxyPass = "http://localhost:3000/";
- };
- };
- };
- };
-}