4 Commits

Author SHA1 Message Date
javalsai c1748e7124 nixos/services: add gitea server
Check / Nix flake (push) Has been cancelled
Lint / Nix expressions (push) Has been cancelled
2026-05-03 00:12:31 +02:00
javalsai e8cfe4c750 nixos/services: add nginx base configuration 2026-05-03 00:12:31 +02:00
javalsai 6ce06f0f84 nixos/networking: add its own fqdn to extraHosts 2026-05-03 00:12:31 +02:00
javalsai eaa2460f63 nixos/hosts: add tuxcord-vm host configuration 2026-05-03 00:12:31 +02:00
3 changed files with 4 additions and 7 deletions
+2
View File
@@ -114,6 +114,8 @@ in
allowedTCPPorts = [
22
80
443
];
};
};
+1 -1
View File
@@ -4,6 +4,6 @@
./storage.nix
];
networking.fqdn = "tuxcord.net";
time.timeZone = "Canada/Eastern";
networking.fqdn = "tuxcord.net";
}
+1 -6
View File
@@ -1,6 +1,6 @@
{ config, lib, ... }:
let
inherit (config.networking) fqdn;
fqdn = config.networking.fqdn;
mkVhost =
attrs:
@@ -14,11 +14,6 @@ let
};
in
{
networking.firewall.allowedTCPPorts = [
80
443
];
services.nginx = {
enable = true;