Xpra configuration

master
David Crompton 2023-08-31 10:28:14 -04:00
parent 5ecd8a3b5d
commit f8d2881564
3 changed files with 21 additions and 0 deletions

View File

@ -10,6 +10,8 @@
./modules.nix
# Set of system services, like ssh, and RDP/VNC
./services.nix
# Public facing/outward facing servers (XPRA, Git(lab|ea))
./servers.nix
# Set of System Wide Available Packages
./packages.nix
# Set of Users on This System

View File

@ -0,0 +1,5 @@
{ ... }: {
imports = [
./servers/xpra.nix
];
}

View File

@ -0,0 +1,14 @@
{ config, pkgs, lib, ...}: {
services.xserver.displayManager.xpra = {
enable = true;
# Where to bind port/address:
bindTcp = "127.0.0.1:10000";
# Use system login creds:
auth = "pam";
# Should sound be streamed?
pulseaudio = true;
};
}