Changed barrier configuration

This commit is contained in:
xeovalyte 2024-03-26 19:39:08 +01:00
parent 7504fa4f48
commit b2383b865a
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View File

@ -4,12 +4,12 @@
services.barrier.client = services.barrier.client =
if hostName == "xv-desktop" if hostName == "xv-desktop"
then { then {
enable = true; enable = false;
} }
else { enable = false; }; else { enable = true; };
home.packages = if hostName == "xv-laptop" then with pkgs; [ home.packages = if hostName == "xv-desktop" then with pkgs; [
barrier barrier
] else []; ] else [];
} }

View File

@ -3,7 +3,7 @@
{ {
networking.firewall = { networking.firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 53317 ]; allowedTCPPorts = [ 53317 24800 ];
allowedUDPPorts = [ 53317 ]; allowedUDPPorts = [ 53317 24800 ];
}; };
} }