1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 23:20:55 +00:00

nixos/lightdm: We now use a global lightdm.conf

This commit is contained in:
William A. Kennington III 2015-03-09 17:59:21 -07:00
parent 23194559f3
commit 66bfdf6eb0

View file

@ -97,10 +97,12 @@ in
# lightdm relaunches itself via just `lightdm`, so needs to be on the PATH
execCmd = ''
export PATH=${lightdm}/sbin:$PATH
exec ${lightdm}/sbin/lightdm --log-dir=/var/log --run-dir=/run --config=${lightdmConf}
exec ${lightdm}/sbin/lightdm --log-dir=/var/log --run-dir=/run
'';
};
environment.etc."lightdm/lightdm.conf".source = lightdmConf;
services.dbus.enable = true;
services.dbus.packages = [ lightdm ];