Compare commits

...

3 commits

Author SHA1 Message Date
14fa321c4f
Arion: Bump matrix
synapse: v1.104.0 -> v1.113.0
2024-08-24 10:41:40 +02:00
d5aaa84302
Franz: Disable hydra 2024-08-24 10:14:31 +02:00
9be1af00f8
Franz: Disable network monitor online check 2024-08-24 10:14:23 +02:00
2 changed files with 6 additions and 3 deletions

View file

@ -10,7 +10,7 @@
services = { services = {
synapse.service = { synapse.service = {
image = "matrixdotorg/synapse:v1.104.0"; image = "matrixdotorg/synapse:v1.113.0";
container_name = "synapse"; container_name = "synapse";
labels = { labels = {
"traefik.enable" = "true"; "traefik.enable" = "true";

View file

@ -24,7 +24,7 @@ in {
./sops.nix ./sops.nix
./restic.nix ./restic.nix
./arion ./arion
./hydra.nix # ./hydra.nix
./samba.nix ./samba.nix
]; ];
@ -33,8 +33,11 @@ in {
networking.hostId = "f014fc43"; networking.hostId = "f014fc43";
services.zfs.autoScrub.enable = true; services.zfs.autoScrub.enable = true;
# Prevent server from getting stuck in emergency mode and non-connectable via SSH
systemd.enableEmergencyMode = false; systemd.enableEmergencyMode = false;
networking.firewall.enable = true;
# Fix rebuild being stuck when Pihole is down due to docker restart
systemd.services.NetworkManager-wait-online.enable = false;
# Prevent zfs from being automounted by fstab auto discovery & zfs # Prevent zfs from being automounted by fstab auto discovery & zfs
fileSystems."/storage/dataset".options = ["noauto"]; fileSystems."/storage/dataset".options = ["noauto"];