Added xpra
This commit is contained in:
parent
55dc78ed46
commit
e6a8899c1f
|
@ -36,6 +36,16 @@
|
||||||
cardinal
|
cardinal
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Set up firewall
|
||||||
|
networking.firewall = {
|
||||||
|
allowedTCPPorts = [
|
||||||
|
10000
|
||||||
|
];
|
||||||
|
allowedUDPPorts = [
|
||||||
|
10000
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# Setup dependencies
|
# Setup dependencies
|
||||||
environment.variables.LD_LIBRARY_PATH = lib.mkForce "${lib.makeLibraryPath (
|
environment.variables.LD_LIBRARY_PATH = lib.mkForce "${lib.makeLibraryPath (
|
||||||
with pkgs;
|
with pkgs;
|
||||||
|
@ -62,6 +72,12 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Set up Xpra
|
||||||
|
services.xserver.displayManager.xpra = {
|
||||||
|
enable = true;
|
||||||
|
bindTcp = "0.0.0.0:10000";
|
||||||
|
};
|
||||||
|
|
||||||
# wprsd service
|
# wprsd service
|
||||||
systemd.user.services.wprsd = {
|
systemd.user.services.wprsd = {
|
||||||
description = "wprsd Service";
|
description = "wprsd Service";
|
||||||
|
|
Loading…
Reference in New Issue