Disable xpra: need new impl.

Current implementation of xpra overrides sddm && overrides system
sound preferences to enable pulseaudio (not necessary)
master
David Crompton 2023-08-31 10:34:53 -04:00
parent f8d2881564
commit 1b2e620123
1 changed files with 2 additions and 2 deletions

View File

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