diff options
author | Martin Fischer <martin@push-f.com> | 2025-04-13 22:42:49 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-04-14 07:06:48 +0200 |
commit | c329be48e687e3152e1362a71b76035bfda7215e (patch) | |
tree | 665989112205f8533d598cff7fb540e7e15abe2f /nixos/hosts/tente/default.nix | |
parent | 83c6f083436aae743ff011d97d64e45e5db88eb7 (diff) |
Diffstat (limited to 'nixos/hosts/tente/default.nix')
-rw-r--r-- | nixos/hosts/tente/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nixos/hosts/tente/default.nix b/nixos/hosts/tente/default.nix index e87b74b..7ecb793 100644 --- a/nixos/hosts/tente/default.nix +++ b/nixos/hosts/tente/default.nix @@ -23,6 +23,7 @@ in ./headscale.nix ./matrix.nix ./monitoring.nix + "${sources.my-lex-surf}/service.nix" "${sources.my-osm-proposals}/service.nix" "${sources.my-geopos-link}/service.nix" "${sources.my-rust-features}/service.nix" @@ -42,6 +43,21 @@ in }; users.groups.www-generator = {}; + services.lex-surf = + let + domain = "lex.surf"; + in + { + enable = true; + domain = domain; + enableACME = true; + fetchUser = "www-generator"; + nginx = { + forceSSL = true; + extraConfig = helpers.mkNginxConfig domain; + }; + }; + services.osm_proposals = let domain = "osm-proposals.${baseDomain}"; |