1
0
Fork 0

Syncthing fixes; fix lingering for aires; open OpenVPN port on Haven

This commit is contained in:
Aires 2024-04-01 12:30:07 -04:00
parent 04fb980753
commit 4f1d045e1a
4 changed files with 7 additions and 2 deletions

View file

@ -58,8 +58,11 @@ in
}; };
}; };
# Open port for OpenVPN
networking.firewall.allowedUDPPorts = [ 1194 ];
# Add script for booting Haven # Add script for booting Haven
environment.systemPackages = [ environment.systemPackages = [
start-haven start-haven
]; ];
} }

View file

@ -53,6 +53,7 @@ with lib;
#libsForQt5.breeze-qt5 # for plasma #libsForQt5.breeze-qt5 # for plasma
gnome.gnome-themes-extra gnome.gnome-themes-extra
papirus-icon-theme papirus-icon-theme
qogir-icon-theme
]; ];
pathsToLink = [ "/share/icons" ]; pathsToLink = [ "/share/icons" ];
}; };

View file

@ -100,6 +100,7 @@ with lib;
# Themeing # Themeing
gnome.gnome-themes-extra gnome.gnome-themes-extra
papirus-icon-theme papirus-icon-theme
qogir-icon-theme
]; ];
}; };

View file

@ -114,7 +114,7 @@ with lib;
enable = true; enable = true;
extraOptions = [ extraOptions = [
"--gui-address=0.0.0.0:8081" "--gui-address=0.0.0.0:8081"
"--home=${config.users.users.gremlin.home}.config/syncthing" "--home=${config.users.users.gremlin.home}/.config/syncthing"
"--no-default-folder" "--no-default-folder"
]; ];
}; };