Misc changes.

This commit is contained in:
Raphaël Numbus
2026-02-16 15:14:05 +01:00
parent bd05897efa
commit e5503a3ef3
4 changed files with 10 additions and 13 deletions
-3
View File
@@ -132,9 +132,6 @@
# Enable Podman
virtualisation.podman.enable = true;
virtualisation.podman.defaultNetwork.settings.dns_enabled = true;
virtualisation.containers.containersConf.settings = {
network.default_rootless_network_cmd = "pasta";
};
# Enable libvirt
# virtualisation.libvirtd.enable = true;
+5 -3
View File
@@ -26,7 +26,9 @@
};
# Open ports in the firewall
networking.firewall.allowPing = true;
networking.firewall.allowedTCPPorts = [ 53 80 443 ];
networking.firewall.allowedUDPPorts = [ 53 443 ];
networking.firewall = {
allowPing = true;
allowedTCPPorts = [ 53 80 443 ];
allowedUDPPorts = [ 53 443 ];
};
}
+1 -1
View File
@@ -23,6 +23,7 @@ in
nextcloud_backend:
volumes:
- nextcloud_data:/var/www/html
- ${data_dir}:/var/www/html/data
environment:
MYSQL_HOST: nextcloud-database
MYSQL_DATABASE: $MYSQL_DATABASE
@@ -31,7 +32,6 @@ in
REDIS_HOST: nextcloud-redis
REDIS_HOST_PASSWORD: $REDIS_HOST_PASSWORD
NEXTCLOUD_TRUSTED_DOMAINS: $DOMAIN_NAME
NEXTCLOUD_DATA_DIR: ${data_dir}
SMTP_HOST: $SMTP_HOST
SMTP_SECURE: tls
SMTP_PORT: $SMTP_PORT