WS-KCNHUB/machines/kcnhub/servers/xpra.nix

15 lines
277 B
Nix
Raw Normal View History

2023-08-31 10:28:14 -04:00
{ config, pkgs, lib, ...}: {
services.xserver.displayManager.xpra = {
enable = false;
2023-08-31 10:28:14 -04:00
# Where to bind port/address:
bindTcp = "127.0.0.1:10000";
# Use system login creds:
auth = "pam";
# Should sound be streamed?
pulseaudio = false;
2023-08-31 10:28:14 -04:00
};
}