fix: enable 'eetion' firewall

This commit is contained in:
2026-02-02 19:43:07 +01:00
parent b59eb6889a
commit 40b2c821c8

View File

@@ -26,6 +26,13 @@ in
networking.hostName = hostName;
networking.networkmanager.enable = true;
networking.firewall = {
enable = true;
allowedTCPPorts = [
80
443
];
};
users.users = {
root.hashedPassword = "!";
@@ -48,7 +55,7 @@ in
backend = "podman";
containers.actualbudget = {
image = "docker.io/actualbudget/actual-server:latest-alpine";
ports = [ "5006:5006" ];
ports = [ "80:5006" ];
volumes = [ "/var/lib/actualbudget:/data" ];
};
};