2009-09-10 17:49:16 +02:00
|
|
|
# This module declares the options to define a *display manager*, the
|
2017-02-10 03:25:03 +01:00
|
|
|
# program responsible for handling X logins (such as xdm, gdb, or
|
2009-09-10 17:49:16 +02:00
|
|
|
# SLiM). The display manager allows the user to select a *session
|
|
|
|
# type*. When the user logs in, the display manager starts the
|
|
|
|
# *session script* ("xsession" below) to launch the selected session
|
|
|
|
# type. The session type defines two things: the *desktop manager*
|
|
|
|
# (e.g., KDE, Gnome or a plain xterm), and optionally the *window
|
|
|
|
# manager* (e.g. kwin or twm).
|
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-01-25 16:49:08 +01:00
|
|
|
|
|
|
|
let
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
cfg = config.services.xserver;
|
2009-09-10 14:37:33 +02:00
|
|
|
xorg = pkgs.xorg;
|
2009-01-25 16:49:08 +01:00
|
|
|
|
2014-11-30 20:49:19 +01:00
|
|
|
fontconfig = config.fonts.fontconfig;
|
|
|
|
xresourcesXft = pkgs.writeText "Xresources-Xft" ''
|
2015-02-01 23:18:48 +01:00
|
|
|
${optionalString (fontconfig.dpi != 0) ''Xft.dpi: ${toString fontconfig.dpi}''}
|
2014-11-30 20:49:19 +01:00
|
|
|
Xft.antialias: ${if fontconfig.antialias then "1" else "0"}
|
|
|
|
Xft.rgba: ${fontconfig.subpixel.rgba}
|
|
|
|
Xft.lcdfilter: lcd${fontconfig.subpixel.lcdfilter}
|
|
|
|
Xft.hinting: ${if fontconfig.hinting.enable then "1" else "0"}
|
|
|
|
Xft.autohint: ${if fontconfig.hinting.autohint then "1" else "0"}
|
freetype: 2.6.5 -> 2.7.1
The Infinality bytecode interpreter is removed in favor of the new v40 TrueType
interpreter. In the past, the Infinality interpreter provided support for
ClearType-style hinting instructions while the default interpreter (then v35)
provided support only for original TrueType-style instructions. The v40
interpreter corrects this deficiency, so the Infinality interpreter is no longer
necessary.
To understand why the Infinality interpreter is no longer necessary, we should
understand how ClearType differs from TrueType and how the v40 interpreter
works. The following is a summary of information available on the FreeType
website [1] mixed with my own editorializing.
TrueType instructions use horizontal and vertical hints to improve glyph
rendering. Before TrueType, fonts were only vertically hinted; horizontal hints
improved rendering by snapping stems to pixel boundaries. Horizontal hinting is
a risk because it can significantly distort glyph shapes and kerning. Extensive
testing at different resolutions is needed to perfect the TrueType
hints. Microsoft invested significant effort to do this with its "Core fonts for
the Web" project, but few other typefaces have seen this level of attention.
With the advent of subpixel rendering, the effective horizontal resolution of
most displays increased significantly. ClearType eschews horizontal hinting in
favor of horizontal supersampling. Most fonts are designed for the Microsoft
bytecode interpreter, which implements a compatibility mode with
TrueType-style (horizontal and vertical) instructions. However, applying the
full horizontal hints to subpixel-rendered fonts leads to color fringes and
inconsistent stem widths. The Infinality interpreter implements several
techniques to mitigate these problems, going so far as to embed font- and
glyph-specific hacks in the interpreter. On the other hand, the v40 interpreter
ignores the horizontal hinting instructions so that glyphs render as they are
intended to on the Microsoft interpreter. Without the horizontal hints, the
problems of glyph and kerning distortion, color fringes, and inconsistent stem
widths--the problems the Infinality interpreter was created to solve--simply
don't occur in the first place.
There are also security concerns which motivate removing the Infinality patches.
Although there is an updated version of the Infinality interpreter for FreeType
2.7, the lack of a consistent upstream maintainer is a security concern. The
interpreter is a Turing-complete virtual machine which has had security
vulnerabilities in the past. While the default interpreter is used in billions
of devices and is maintained by an active developer, the Infinality interpreter
is neither scrutinized nor maintained. We will probably never know if there are
defects in the Infinality interpreter, and if they were discovered they would
likely never be fixed. I do not think that is an acceptable situtation for a
core library like FreeType.
Dropping the Infinality patches means that font rendering will be less
customizable. I think this is an acceptable trade-off. The Infinality
interpreter made many compromises to mitigate the problems with horizontal
hinting; the main purpose of customization is to tailor these compromises to the
user's preferences. The new interpreter does not have to make these compromises
because it renders fonts as their designers intended, so this level of
customization is not necessary.
The Infinality-associated patches are also removed from cairo. These patches
only set the default rendering options in case they aren't set though
Fontconfig. On NixOS, the rendering options are always set in Fontconfig, so
these patches never actually did anything for us!
The Fontconfig test suite is patched to account for a quirk in the way PCF fonts
are named.
The fontconfig option `hintstyle` is no longer configurable in NixOS. This
option selects the TrueType interpreter; the v40 interpreter is `hintslight` and
the older v35 interpreter is `hintmedium` or `hintfull` (which have actually
always been the same thing). The setting may still be changed through the
`localConf` option or by creating a user Fontconfig file.
Users with HiDPI displays should probably disable hinting and antialiasing: at
best they have no visible effect.
The fontconfig-ultimate settings are still available in NixOS, but they are no
longer the default. They still work, but their main purpose is to set rendering
quirks which are no longer necessary and may actually be
detrimental (e.g. setting `hintfull` for some fonts). Also, the vast array of
font substitutions provided is not an appropriate default; the default setting
should be to give the user the font they asked for.
[1]. https://www.freetype.org/freetype2/docs/subpixel-hinting.html
2017-03-06 00:39:38 +01:00
|
|
|
Xft.hintstyle: hintslight
|
2014-11-30 20:49:19 +01:00
|
|
|
'';
|
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
# file provided by services.xserver.displayManager.session.script
|
2009-09-10 17:49:16 +02:00
|
|
|
xsession = wm: dm: pkgs.writeScript "xsession"
|
|
|
|
''
|
2015-11-29 01:18:59 +01:00
|
|
|
#! ${pkgs.bash}/bin/bash
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2017-02-28 11:05:55 +01:00
|
|
|
# SDDM splits "Exec" line in .desktop file by whitespace and pass script path as $1
|
|
|
|
if [[ "$0" = "$1" ]]; then
|
|
|
|
# remove superfluous $1 again
|
|
|
|
shift
|
|
|
|
# join arguments again and evaluate them in a shell context
|
|
|
|
# to interpret shell quoting
|
|
|
|
eval exec "$0" "$@"
|
|
|
|
fi
|
2017-02-13 00:09:24 +01:00
|
|
|
|
2016-05-24 21:29:22 +02:00
|
|
|
${optionalString cfg.displayManager.logToJournal ''
|
|
|
|
if [ -z "$_DID_SYSTEMD_CAT" ]; then
|
2016-07-17 18:29:46 +02:00
|
|
|
_DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$@"
|
2016-05-24 21:29:22 +02:00
|
|
|
fi
|
|
|
|
''}
|
|
|
|
|
2012-11-05 23:07:53 +01:00
|
|
|
. /etc/profile
|
2011-08-12 12:04:43 +02:00
|
|
|
cd "$HOME"
|
|
|
|
|
2009-09-13 15:34:52 +02:00
|
|
|
# The first argument of this script is the session type.
|
|
|
|
sessionType="$1"
|
2010-08-08 16:05:32 +02:00
|
|
|
if [ "$sessionType" = default ]; then sessionType=""; fi
|
2009-09-13 15:34:52 +02:00
|
|
|
|
2016-05-24 21:29:22 +02:00
|
|
|
${optionalString (!cfg.displayManager.job.logsXsession && !cfg.displayManager.logToJournal) ''
|
2009-09-13 15:34:52 +02:00
|
|
|
exec > ~/.xsession-errors 2>&1
|
|
|
|
''}
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2015-06-22 18:08:29 +02:00
|
|
|
${optionalString cfg.startDbusSession ''
|
|
|
|
if test -z "$DBUS_SESSION_BUS_ADDRESS"; then
|
2015-10-13 14:33:08 +02:00
|
|
|
exec ${pkgs.dbus.dbus-launch} --exit-with-session "$0" "$sessionType"
|
2009-11-21 23:14:01 +01:00
|
|
|
fi
|
|
|
|
''}
|
|
|
|
|
2011-07-26 20:16:24 +02:00
|
|
|
# Start PulseAudio if enabled.
|
2013-07-23 19:04:40 +02:00
|
|
|
${optionalString (config.hardware.pulseaudio.enable) ''
|
|
|
|
${optionalString (!config.hardware.pulseaudio.systemWide)
|
2015-10-08 11:51:10 +02:00
|
|
|
"${config.hardware.pulseaudio.package.out}/bin/pulseaudio --start"
|
2013-07-23 19:04:40 +02:00
|
|
|
}
|
2011-07-26 20:16:24 +02:00
|
|
|
|
|
|
|
# Publish access credentials in the root window.
|
2015-10-08 11:51:10 +02:00
|
|
|
${config.hardware.pulseaudio.package.out}/bin/pactl load-module module-x11-publish "display=$DISPLAY"
|
2011-07-26 20:16:24 +02:00
|
|
|
''}
|
|
|
|
|
2015-02-25 14:29:24 +01:00
|
|
|
# Tell systemd about our $DISPLAY. This is needed by the
|
|
|
|
# ssh-agent unit.
|
|
|
|
${config.systemd.package}/bin/systemctl --user import-environment DISPLAY
|
|
|
|
|
2009-09-13 15:34:52 +02:00
|
|
|
# Load X defaults.
|
2014-11-30 20:49:19 +01:00
|
|
|
${xorg.xrdb}/bin/xrdb -merge ${xresourcesXft}
|
2014-11-07 21:21:21 +01:00
|
|
|
if test -e ~/.Xresources; then
|
|
|
|
${xorg.xrdb}/bin/xrdb -merge ~/.Xresources
|
|
|
|
elif test -e ~/.Xdefaults; then
|
2009-09-13 15:34:52 +02:00
|
|
|
${xorg.xrdb}/bin/xrdb -merge ~/.Xdefaults
|
2009-09-10 17:49:16 +02:00
|
|
|
fi
|
|
|
|
|
2013-08-26 16:04:42 +02:00
|
|
|
# Speed up application start by 50-150ms according to
|
|
|
|
# http://kdemonkey.blogspot.nl/2008/04/magic-trick.html
|
2016-11-26 11:18:01 +01:00
|
|
|
rm -rf "$HOME/.compose-cache"
|
|
|
|
mkdir "$HOME/.compose-cache"
|
2013-08-26 16:04:42 +02:00
|
|
|
|
2015-09-28 15:14:44 +02:00
|
|
|
# Work around KDE errors when a user first logs in and
|
|
|
|
# .local/share doesn't exist yet.
|
2016-11-26 11:18:01 +01:00
|
|
|
mkdir -p "$HOME/.local/share"
|
2015-09-28 15:14:44 +02:00
|
|
|
|
2016-05-24 21:29:22 +02:00
|
|
|
unset _DID_SYSTEMD_CAT
|
|
|
|
|
2012-03-16 02:29:51 +01:00
|
|
|
${cfg.displayManager.sessionCommands}
|
|
|
|
|
2014-01-02 11:32:27 +01:00
|
|
|
# Allow the user to execute commands at the beginning of the X session.
|
|
|
|
if test -f ~/.xprofile; then
|
|
|
|
source ~/.xprofile
|
|
|
|
fi
|
|
|
|
|
2009-09-13 15:34:52 +02:00
|
|
|
# Allow the user to setup a custom session type.
|
2009-10-15 10:27:51 +02:00
|
|
|
if test -x ~/.xsession; then
|
|
|
|
exec ~/.xsession
|
|
|
|
else
|
|
|
|
if test "$sessionType" = "custom"; then
|
|
|
|
sessionType="" # fall-thru if there is no ~/.xsession
|
|
|
|
fi
|
2009-09-13 15:34:52 +02:00
|
|
|
fi
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2009-09-13 15:34:52 +02:00
|
|
|
# The session type is "<desktop-manager> + <window-manager>", so
|
2009-09-10 17:49:16 +02:00
|
|
|
# extract those.
|
2009-09-13 15:34:52 +02:00
|
|
|
windowManager="''${sessionType##* + }"
|
2009-09-10 17:49:16 +02:00
|
|
|
: ''${windowManager:=${cfg.windowManager.default}}
|
2009-09-13 15:34:52 +02:00
|
|
|
desktopManager="''${sessionType% + *}"
|
2009-09-10 17:49:16 +02:00
|
|
|
: ''${desktopManager:=${cfg.desktopManager.default}}
|
|
|
|
|
|
|
|
# Start the window manager.
|
|
|
|
case $windowManager in
|
|
|
|
${concatMapStrings (s: ''
|
|
|
|
(${s.name})
|
|
|
|
${s.start}
|
|
|
|
;;
|
|
|
|
'') wm}
|
|
|
|
(*) echo "$0: Window manager '$windowManager' not found.";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Start the desktop manager.
|
|
|
|
case $desktopManager in
|
|
|
|
${concatMapStrings (s: ''
|
|
|
|
(${s.name})
|
|
|
|
${s.start}
|
|
|
|
;;
|
|
|
|
'') dm}
|
|
|
|
(*) echo "$0: Desktop manager '$desktopManager' not found.";;
|
|
|
|
esac
|
|
|
|
|
2016-09-20 09:21:08 +02:00
|
|
|
${optionalString cfg.updateDbusEnvironment ''
|
|
|
|
${lib.getBin pkgs.dbus}/bin/dbus-update-activation-environment --systemd --all
|
2016-04-14 11:28:10 +02:00
|
|
|
''}
|
|
|
|
|
2009-09-10 17:49:16 +02:00
|
|
|
test -n "$waitPID" && wait "$waitPID"
|
|
|
|
exit 0
|
|
|
|
'';
|
|
|
|
|
2015-09-01 09:42:08 +02:00
|
|
|
mkDesktops = names: pkgs.runCommand "desktops"
|
|
|
|
{ # trivial derivation
|
|
|
|
preferLocalBuild = true;
|
|
|
|
allowSubstitutes = false;
|
|
|
|
}
|
2009-09-10 17:49:16 +02:00
|
|
|
''
|
2016-11-26 11:18:01 +01:00
|
|
|
mkdir -p "$out"
|
2009-09-10 17:49:16 +02:00
|
|
|
${concatMapStrings (n: ''
|
|
|
|
cat - > "$out/${n}.desktop" << EODESKTOP
|
|
|
|
[Desktop Entry]
|
|
|
|
Version=1.0
|
|
|
|
Type=XSession
|
|
|
|
TryExec=${cfg.displayManager.session.script}
|
|
|
|
Exec=${cfg.displayManager.session.script} '${n}'
|
2015-06-16 13:20:20 +02:00
|
|
|
X-GDM-BypassXsession=true
|
2009-09-10 17:49:16 +02:00
|
|
|
Name=${n}
|
|
|
|
Comment=
|
|
|
|
EODESKTOP
|
|
|
|
'') names}
|
|
|
|
'';
|
2009-04-13 12:57:36 +02:00
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
2009-09-10 17:49:16 +02:00
|
|
|
options = {
|
2009-01-25 16:49:08 +01:00
|
|
|
|
2009-09-10 17:49:16 +02:00
|
|
|
services.xserver.displayManager = {
|
2009-01-25 16:49:08 +01:00
|
|
|
|
2009-09-10 17:49:16 +02:00
|
|
|
xauthBin = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
internal = true;
|
2009-09-10 17:49:16 +02:00
|
|
|
default = "${xorg.xauth}/bin/xauth";
|
|
|
|
description = "Path to the <command>xauth</command> program used by display managers.";
|
|
|
|
};
|
2009-01-25 16:49:08 +01:00
|
|
|
|
2009-09-10 17:49:16 +02:00
|
|
|
xserverBin = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.path;
|
2009-09-10 17:49:16 +02:00
|
|
|
description = "Path to the X server used by display managers.";
|
|
|
|
};
|
|
|
|
|
|
|
|
xserverArgs = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.listOf types.str;
|
2009-09-10 17:49:16 +02:00
|
|
|
default = [];
|
2014-12-22 21:00:32 +01:00
|
|
|
example = [ "-ac" "-logverbose" "-verbose" "-nolisten tcp" ];
|
2009-09-10 17:49:16 +02:00
|
|
|
description = "List of arguments for the X server.";
|
|
|
|
};
|
|
|
|
|
2012-03-16 02:29:51 +01:00
|
|
|
sessionCommands = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.lines;
|
2012-03-16 02:29:51 +01:00
|
|
|
default = "";
|
|
|
|
example =
|
|
|
|
''
|
|
|
|
xmessage "Hello World!" &
|
|
|
|
'';
|
|
|
|
description = "Shell commands executed just before the window or desktop manager is started.";
|
|
|
|
};
|
|
|
|
|
2015-03-10 02:04:40 +01:00
|
|
|
hiddenUsers = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ "nobody" ];
|
|
|
|
description = ''
|
|
|
|
A list of users which will not be shown in the display manager.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-09-10 17:49:16 +02:00
|
|
|
session = mkOption {
|
|
|
|
default = [];
|
2013-10-30 16:19:07 +01:00
|
|
|
example = literalExample
|
|
|
|
''
|
|
|
|
[ { manage = "desktop";
|
|
|
|
name = "xterm";
|
|
|
|
start = '''
|
|
|
|
''${pkgs.xterm}/bin/xterm -ls &
|
|
|
|
waitPID=$!
|
|
|
|
''';
|
|
|
|
}
|
|
|
|
]
|
|
|
|
'';
|
2009-09-10 17:49:16 +02:00
|
|
|
description = ''
|
|
|
|
List of sessions supported with the command used to start each
|
|
|
|
session. Each session script can set the
|
|
|
|
<varname>waitPID</varname> shell variable to make this script
|
|
|
|
wait until the end of the user session. Each script is used
|
|
|
|
to define either a windows manager or a desktop manager. These
|
|
|
|
can be differentiated by setting the attribute
|
|
|
|
<varname>manage</varname> either to <literal>"window"</literal>
|
|
|
|
or <literal>"desktop"</literal>.
|
|
|
|
|
|
|
|
The list of desktop manager and window manager should appear
|
|
|
|
inside the display manager with the desktop manager name
|
|
|
|
followed by the window manager name.
|
|
|
|
'';
|
|
|
|
apply = list: rec {
|
|
|
|
wm = filter (s: s.manage == "window") list;
|
|
|
|
dm = filter (s: s.manage == "desktop") list;
|
2010-08-08 16:05:32 +02:00
|
|
|
names = flip concatMap dm
|
|
|
|
(d: map (w: d.name + optionalString (w.name != "none") (" + " + w.name))
|
|
|
|
(filter (w: d.name != "none" || w.name != "none") wm));
|
2009-09-10 17:49:16 +02:00
|
|
|
desktops = mkDesktops names;
|
|
|
|
script = xsession wm dm;
|
2009-01-25 16:49:08 +01:00
|
|
|
};
|
2009-09-10 17:49:16 +02:00
|
|
|
};
|
2009-01-25 16:49:08 +01:00
|
|
|
|
2013-10-15 17:22:30 +02:00
|
|
|
job = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2013-10-15 17:22:30 +02:00
|
|
|
preStart = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example = "rm -f /var/log/my-display-manager.log";
|
|
|
|
description = "Script executed before the display manager is started.";
|
|
|
|
};
|
|
|
|
|
|
|
|
execCmd = mkOption {
|
2013-10-30 11:02:04 +01:00
|
|
|
type = types.str;
|
2014-08-27 23:41:15 +02:00
|
|
|
example = literalExample ''
|
|
|
|
"''${pkgs.slim}/bin/slim"
|
|
|
|
'';
|
2013-10-15 17:22:30 +02:00
|
|
|
description = "Command to start the display manager.";
|
|
|
|
};
|
|
|
|
|
|
|
|
environment = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.attrsOf types.unspecified;
|
2013-10-15 17:22:30 +02:00
|
|
|
default = {};
|
2014-08-27 23:41:15 +02:00
|
|
|
example = { SLIM_CFGFILE = "/etc/slim.conf"; };
|
2013-10-15 17:22:30 +02:00
|
|
|
description = "Additional environment variables needed by the display manager.";
|
|
|
|
};
|
|
|
|
|
|
|
|
logsXsession = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether the display manager redirects the
|
|
|
|
output of the session script to
|
|
|
|
<filename>~/.xsession-errors</filename>.
|
|
|
|
'';
|
2009-09-10 17:49:16 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
};
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2016-05-24 21:29:22 +02:00
|
|
|
logToJournal = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
By default, the stdout/stderr of sessions is written
|
|
|
|
to <filename>~/.xsession-errors</filename>. When this option
|
|
|
|
is enabled, it will instead be written to the journal.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
};
|
2009-09-10 17:49:16 +02:00
|
|
|
|
2014-09-18 16:12:36 +02:00
|
|
|
config = {
|
2015-10-18 00:53:13 +02:00
|
|
|
services.xserver.displayManager.xserverBin = "${xorg.xorgserver.out}/bin/X";
|
2014-09-18 16:12:36 +02:00
|
|
|
};
|
|
|
|
|
2016-02-28 10:35:43 +01:00
|
|
|
imports = [
|
2016-03-27 00:01:43 +01:00
|
|
|
(mkRemovedOptionModule [ "services" "xserver" "displayManager" "desktopManagerHandlesLidAndPower" ]
|
|
|
|
"The option is no longer necessary because all display managers have already delegated lid management to systemd.")
|
2016-02-28 10:35:43 +01:00
|
|
|
];
|
|
|
|
|
2009-01-25 16:49:08 +01:00
|
|
|
}
|