9 Commits

Author SHA1 Message Date
javalsai 4f248dc3cb docs: document installation, secrets and setup steps
Check / Nix flake (push) Failing after 10s
Lint / Nix expressions (push) Failing after 11s
2026-05-03 13:38:03 -04:00
javalsai 054b293a69 nixos/services: make dns configuration easier 2026-05-03 13:38:03 -04:00
javalsai dda41aca4f nixos/service: add dns (bind named server) 2026-05-03 13:38:03 -04:00
javalsai 9586a83d3d nixos/programs: add bind utils 2026-05-03 13:38:03 -04:00
javalsai 97fbec56b1 nixos/services: add gitea server
Check / Nix flake (push) Failing after 9s
Lint / Nix expressions (push) Failing after 11s
2026-05-03 13:38:03 -04:00
javalsai 7ff5fb0da2 nixos/services: add nginx base configuration 2026-05-03 13:38:03 -04:00
javalsai b6e8297085 nixos/networking: add own fqdn to extraHosts 2026-05-03 13:38:03 -04:00
javalsai 8864af1ddf nixos/hosts: add tuxcord-vm host configuration 2026-05-03 13:37:25 -04:00
ErrorNoInternet 5942c97c1c nixos: separate openssh firewall port
Check / Nix flake (push) Failing after 8s
Lint / Nix expressions (push) Failing after 11s
2026-05-03 11:29:25 -04:00
2 changed files with 4 additions and 8 deletions
+2 -8
View File
@@ -93,6 +93,8 @@ in
networking = {
networkmanager.enable = true;
firewall.enable = true;
extraHosts =
let
subdomains = [
@@ -111,14 +113,6 @@ in
::1 ${host}
''
) "" subdomains;
firewall = {
enable = true;
allowedTCPPorts = [
22
];
};
};
virtualisation.podman.enable = true;
+2
View File
@@ -10,4 +10,6 @@
PermitRootLogin = "no";
};
};
networking.firewall.allowedTCPPorts = [ 22 ];
}