2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-01-25 15:49:08 +00:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-04-13 11:47:15 +01:00
|
|
|
|
2009-08-16 15:49:14 +01:00
|
|
|
{
|
2019-11-11 21:18:23 +00:00
|
|
|
# added 2019-11-11
|
|
|
|
imports = [
|
|
|
|
(mkRemovedOptionModule [ "services" "xserver" "displayManager" "slim" ] ''
|
|
|
|
The SLIM project is abandoned and their last release was in 2013.
|
|
|
|
Because of this it poses a security risk to your system.
|
|
|
|
Other issues include it not fully supporting systemd and logind sessions.
|
|
|
|
Please use a different display manager such as LightDM, SDDM, or GDM.
|
|
|
|
You can also use the startx module which uses Xinitrc.
|
|
|
|
'')
|
|
|
|
];
|
2009-01-25 15:49:08 +00:00
|
|
|
}
|