Fixing the xserver.enableTCP for kdm.

svn path=/nixos/trunk/; revision=30056
This commit is contained in:
Lluís Batlle i Rossell 2011-10-27 15:43:13 +00:00
parent 564f7358f1
commit c7f568dc06

View file

@ -50,7 +50,10 @@ let
buildCommand =
''
echo "$config" > $out
cat ${kdebase_workspace}/share/config/kdm/kdmrc >> $out
# The default kdmrc would add "-nolisten tcp", and we already
# have that managed by nixos. Hence the grep.
cat ${kdebase_workspace}/share/config/kdm/kdmrc | grep -v nolisten >> $out
'';
};