4 Commits

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