feat: add gitea service to sv1

This commit is contained in:
Bladesy 2024-12-16 19:51:18 +00:00
parent e6e509d306
commit 07750838d0

View File

@ -152,6 +152,7 @@
networking = {
hostName = "sv1";
networkmanager.enable = true;
firewall.allowedTCPPorts = [3000];
};
time.timeZone = "Europe/London";
@ -179,9 +180,14 @@
};
};
services.openssh = {
enable = true;
settings.PermitRootLogin = "without-password";
services = {
openssh = {
enable = true;
settings.PermitRootLogin = "without-password";
};
gitea = {
enable = true;
};
};
nixpkgs.overlays = [lib.overlays.pkgs];