8 Commits

Author SHA1 Message Date
javalsai ed8f62a0ee docs: document installation, secrets and setup steps 2026-05-03 19:33:03 +02:00
javalsai 7f7165c0af nixos/services: make dns configuration easier 2026-05-03 19:32:39 +02:00
javalsai 277c96690a nixos/service: add dns (bind named server) 2026-05-03 19:25:46 +02:00
javalsai e280d77728 nixos/programs: add bind utils 2026-05-03 16:37:38 +02:00
javalsai 9ab6dfd4ad nixos/services: add gitea server
Check / Nix flake (push) Failing after 9s
Lint / Nix expressions (push) Failing after 10s
2026-05-02 19:13:36 -04:00
javalsai c146aa648d nixos/services: add nginx base configuration 2026-05-02 19:13:36 -04:00
javalsai 3fea771615 nixos/networking: add own fqdn to extraHosts 2026-05-02 19:13:36 -04:00
javalsai 8a5f649345 nixos/hosts: add tuxcord-vm host configuration 2026-05-02 19:13:36 -04:00
2 changed files with 8 additions and 4 deletions
+8 -2
View File
@@ -93,8 +93,6 @@ in
networking = {
networkmanager.enable = true;
firewall.enable = true;
extraHosts =
let
subdomains = [
@@ -113,6 +111,14 @@ in
::1 ${host}
''
) "" subdomains;
firewall = {
enable = true;
allowedTCPPorts = [
22
];
};
};
virtualisation.podman.enable = true;
-2
View File
@@ -10,6 +10,4 @@
PermitRootLogin = "no";
};
};
networking.firewall.allowedTCPPorts = [ 22 ];
}