tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xrdp: environment.pathsToLink from xserver.nix
Volth
8 years ago
9bce4166
830669ca
+5
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
xrdp.nix
+5
nixos/modules/services/networking/xrdp.nix
···
93
93
94
94
config = mkIf cfg.enable {
95
95
96
96
+
# copied from <nixos/modules/services/x11/xserver.nix>
97
97
+
# xrdp can run X11 program even if "services.xserver.enable = false"
98
98
+
environment.pathsToLink =
99
99
+
[ "/etc/xdg" "/share/xdg" "/share/applications" "/share/icons" "/share/pixmaps" ];
100
100
+
96
101
systemd = {
97
102
services.xrdp = {
98
103
wantedBy = [ "multi-user.target" ];