2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2013-03-25 18:26:07 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2013-03-25 18:26:07 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
dmcfg = config.services.xserver.displayManager;
|
2013-09-09 08:22:08 +00:00
|
|
|
xEnv = config.systemd.services."display-manager".environment;
|
2013-03-25 18:26:07 +00:00
|
|
|
cfg = dmcfg.lightdm;
|
|
|
|
|
|
|
|
inherit (pkgs) stdenv lightdm writeScript writeText;
|
|
|
|
|
|
|
|
# lightdm runs with clearenv(), but we need a few things in the enviornment for X to startup
|
|
|
|
xserverWrapper = writeScript "xserver-wrapper"
|
|
|
|
''
|
|
|
|
#! /bin/sh
|
2013-09-09 08:22:08 +00:00
|
|
|
${concatMapStrings (n: "export ${n}=\"${getAttr n xEnv}\"\n") (attrNames xEnv)}
|
2013-03-25 18:26:07 +00:00
|
|
|
exec ${dmcfg.xserverBin} ${dmcfg.xserverArgs}
|
|
|
|
'';
|
|
|
|
|
2015-03-10 21:23:43 +00:00
|
|
|
theme = pkgs.gnome3.gnome_themes_standard;
|
|
|
|
icons = pkgs.gnome3.gnome_icon_theme;
|
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
# The default greeter provided with this expression is the GTK greeter.
|
|
|
|
# Again, we need a few things in the environment for the greeter to run with
|
|
|
|
# fonts/icons.
|
|
|
|
wrappedGtkGreeter = stdenv.mkDerivation {
|
|
|
|
name = "lightdm-gtk-greeter";
|
|
|
|
buildInputs = [ pkgs.makeWrapper ];
|
|
|
|
|
|
|
|
buildCommand = ''
|
2015-03-10 21:03:12 +00:00
|
|
|
# This wrapper ensures that we actually get themes
|
2013-03-25 18:26:07 +00:00
|
|
|
makeWrapper ${pkgs.lightdm_gtk_greeter}/sbin/lightdm-gtk-greeter \
|
|
|
|
$out/greeter \
|
2015-03-10 21:03:12 +00:00
|
|
|
--prefix PATH : "${pkgs.glibc}/bin" \
|
2015-03-10 21:23:43 +00:00
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$(find ${theme} -name loaders.cache)" \
|
|
|
|
--set GTK_PATH "${theme}:${pkgs.gtk3}" \
|
|
|
|
--set GTK_EXE_PREFIX "${theme}" \
|
|
|
|
--set GTK_DATA_PREFIX "${theme}" \
|
|
|
|
--set XDG_DATA_DIRS "${theme}/share:${icons}/share" \
|
|
|
|
--set XDG_CONFIG_HOME "${theme}/share"
|
2013-03-25 18:26:07 +00:00
|
|
|
|
|
|
|
cat - > $out/lightdm-gtk-greeter.desktop << EOF
|
2013-04-22 19:31:29 +00:00
|
|
|
[Desktop Entry]
|
|
|
|
Name=LightDM Greeter
|
|
|
|
Comment=This runs the LightDM Greeter
|
|
|
|
Exec=$out/greeter
|
|
|
|
Type=Application
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
};
|
2013-03-25 18:26:07 +00:00
|
|
|
|
2015-03-10 01:04:40 +00:00
|
|
|
usersConf = writeText "users.conf"
|
|
|
|
''
|
|
|
|
[UserList]
|
|
|
|
minimum-uid=500
|
2015-03-10 21:35:49 +00:00
|
|
|
hidden-users=${concatStringsSep " " dmcfg.hiddenUsers}
|
2015-03-10 01:04:40 +00:00
|
|
|
hidden-shells=/run/current-system/sw/sbin/nologin
|
|
|
|
'';
|
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
lightdmConf = writeText "lightdm.conf"
|
|
|
|
''
|
2013-04-22 19:31:29 +00:00
|
|
|
[LightDM]
|
|
|
|
greeter-user = ${config.users.extraUsers.lightdm.name}
|
2014-01-31 11:11:04 +00:00
|
|
|
greeters-directory = ${cfg.greeter.package}
|
|
|
|
sessions-directory = ${dmcfg.session.desktops}
|
2013-03-25 18:26:07 +00:00
|
|
|
|
2013-04-22 19:31:29 +00:00
|
|
|
[SeatDefaults]
|
|
|
|
xserver-command = ${xserverWrapper}
|
|
|
|
session-wrapper = ${dmcfg.session.script}
|
|
|
|
greeter-session = ${cfg.greeter.name}
|
2013-03-25 18:26:07 +00:00
|
|
|
'';
|
|
|
|
|
2015-03-10 21:03:12 +00:00
|
|
|
gtkGreeterConf = writeText "lightdm-gtk-greeter.conf"
|
|
|
|
''
|
|
|
|
[greeter]
|
|
|
|
theme-name = Adwaita
|
|
|
|
icon-theme-name = Adwaita
|
2015-03-10 22:57:46 +00:00
|
|
|
background = ${cfg.background}
|
2015-03-10 21:03:12 +00:00
|
|
|
'';
|
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.xserver.displayManager.lightdm = {
|
2015-03-10 21:55:54 +00:00
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable lightdm as the display manager.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
greeter = mkOption {
|
|
|
|
description = ''
|
|
|
|
The LightDM greeter to login via. The package should be a directory
|
|
|
|
containing a .desktop file matching the name in the 'name' option.
|
|
|
|
'';
|
|
|
|
default = {
|
|
|
|
name = "lightdm-gtk-greeter";
|
|
|
|
package = wrappedGtkGreeter;
|
|
|
|
};
|
|
|
|
};
|
2015-03-10 01:04:40 +00:00
|
|
|
|
2015-03-10 22:57:46 +00:00
|
|
|
background = mkOption {
|
|
|
|
default = "${pkgs.nixos-artwork}/gnome/Gnome_Dark.png";
|
|
|
|
description = ''
|
|
|
|
The background image or color to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2013-10-15 15:22:30 +00:00
|
|
|
|
|
|
|
services.xserver.displayManager.slim.enable = false;
|
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
services.xserver.displayManager.job = {
|
|
|
|
logsXsession = true;
|
|
|
|
|
|
|
|
# lightdm relaunches itself via just `lightdm`, so needs to be on the PATH
|
2013-10-28 00:14:16 +00:00
|
|
|
execCmd = ''
|
2013-03-25 18:26:07 +00:00
|
|
|
export PATH=${lightdm}/sbin:$PATH
|
2015-03-10 00:59:21 +00:00
|
|
|
exec ${lightdm}/sbin/lightdm --log-dir=/var/log --run-dir=/run
|
2013-03-25 18:26:07 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-03-10 21:03:12 +00:00
|
|
|
environment.etc."lightdm/lightdm-gtk-greeter.conf".source = gtkGreeterConf;
|
2015-03-10 00:59:21 +00:00
|
|
|
environment.etc."lightdm/lightdm.conf".source = lightdmConf;
|
2015-03-10 01:04:40 +00:00
|
|
|
environment.etc."lightdm/users.conf".source = usersConf;
|
2015-03-10 00:59:21 +00:00
|
|
|
|
2013-03-25 18:26:07 +00:00
|
|
|
services.dbus.enable = true;
|
|
|
|
services.dbus.packages = [ lightdm ];
|
|
|
|
|
2013-10-15 12:47:51 +00:00
|
|
|
security.pam.services.lightdm = { allowNullPassword = true; startSession = true; };
|
|
|
|
security.pam.services.lightdm-greeter = { allowNullPassword = true; startSession = true; };
|
2013-03-25 18:26:07 +00:00
|
|
|
|
|
|
|
users.extraUsers.lightdm = {
|
|
|
|
createHome = true;
|
2015-03-10 21:55:54 +00:00
|
|
|
home = "/var/lib/lightdm-data";
|
2013-08-26 13:20:25 +00:00
|
|
|
group = "lightdm";
|
|
|
|
uid = config.ids.uids.lightdm;
|
2013-03-25 18:26:07 +00:00
|
|
|
};
|
2013-08-26 13:20:25 +00:00
|
|
|
|
|
|
|
users.extraGroups.lightdm.gid = config.ids.gids.lightdm;
|
2013-03-25 18:26:07 +00:00
|
|
|
};
|
|
|
|
}
|