Compare commits
3 commits
7f2c004895
...
14fa321c4f
Author | SHA1 | Date | |
---|---|---|---|
14fa321c4f | |||
d5aaa84302 | |||
9be1af00f8 |
2 changed files with 6 additions and 3 deletions
|
@ -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";
|
||||||
|
|
|
@ -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"];
|
||||||
|
|
Loading…
Reference in a new issue