2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-08-09 00:45:54 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2010-08-09 00:45:54 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
xcfg = config.services.xserver;
|
|
|
|
cfg = xcfg.desktopManager.xfce;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.xserver.desktopManager.xfce.enable = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.bool;
|
2010-08-09 00:45:54 +02:00
|
|
|
default = false;
|
|
|
|
description = "Enable the Xfce desktop environment.";
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2010-08-09 00:45:54 +02:00
|
|
|
config = mkIf (xcfg.enable && cfg.enable) {
|
|
|
|
|
|
|
|
services.xserver.desktopManager.session = singleton
|
|
|
|
{ name = "xfce";
|
|
|
|
bgSupport = true;
|
|
|
|
start =
|
|
|
|
''
|
2013-03-04 10:50:11 +01:00
|
|
|
# Set GTK_PATH so that GTK+ can find the theme engines.
|
2014-02-07 00:25:50 +01:00
|
|
|
export GTK_PATH="${config.system.path}/lib/gtk-2.0:${config.system.path}/lib/gtk-3.0"
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2010-08-09 23:59:34 +02:00
|
|
|
# Set GTK_DATA_PREFIX so that GTK+ can find the Xfce themes.
|
|
|
|
export GTK_DATA_PREFIX=${config.system.path}
|
2010-10-11 00:35:18 +02:00
|
|
|
|
2013-03-09 10:55:57 +01:00
|
|
|
exec ${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc}
|
2010-08-09 00:45:54 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages =
|
2012-09-21 17:03:07 +02:00
|
|
|
[ pkgs.gtk # To get GTK+'s themes.
|
2010-08-09 23:59:34 +02:00
|
|
|
pkgs.hicolor_icon_theme
|
2013-08-15 18:02:55 +02:00
|
|
|
pkgs.tango-icon-theme
|
2010-08-09 23:59:34 +02:00
|
|
|
pkgs.shared_mime_info
|
2010-08-09 13:51:44 +02:00
|
|
|
pkgs.which # Needed by the xfce's xinitrc script.
|
|
|
|
pkgs.xfce.exo
|
2010-08-09 23:59:34 +02:00
|
|
|
pkgs.xfce.gtk_xfce_engine
|
|
|
|
pkgs.xfce.libxfcegui4 # For the icons.
|
|
|
|
pkgs.xfce.mousepad
|
|
|
|
pkgs.xfce.ristretto
|
2010-08-09 00:45:54 +02:00
|
|
|
pkgs.xfce.terminal
|
2010-08-09 23:59:34 +02:00
|
|
|
pkgs.xfce.thunar
|
|
|
|
pkgs.xfce.xfce4icontheme
|
2010-08-09 13:51:44 +02:00
|
|
|
pkgs.xfce.xfce4panel
|
|
|
|
pkgs.xfce.xfce4session
|
2010-08-09 23:59:34 +02:00
|
|
|
pkgs.xfce.xfce4settings
|
2010-10-11 00:35:18 +02:00
|
|
|
pkgs.xfce.xfce4mixer
|
2014-01-12 23:31:22 +01:00
|
|
|
pkgs.xfce.xfce4screenshooter
|
2010-08-09 13:51:44 +02:00
|
|
|
pkgs.xfce.xfconf
|
|
|
|
pkgs.xfce.xfdesktop
|
|
|
|
pkgs.xfce.xfwm4
|
2010-08-09 23:59:34 +02:00
|
|
|
# This supplies some "abstract" icons such as
|
|
|
|
# "utilities-terminal" and "accessories-text-editor".
|
|
|
|
pkgs.gnome.gnomeicontheme
|
2010-08-16 09:48:06 +02:00
|
|
|
pkgs.desktop_file_utils
|
2011-08-23 00:52:13 +02:00
|
|
|
pkgs.xfce.libxfce4ui
|
|
|
|
pkgs.xfce.garcon
|
2011-09-05 22:37:06 +02:00
|
|
|
pkgs.xfce.thunar_volman
|
|
|
|
pkgs.xfce.gvfs
|
2012-01-17 19:15:20 +01:00
|
|
|
pkgs.xfce.xfce4_appfinder
|
2013-11-18 21:08:25 +01:00
|
|
|
pkgs.xfce.tumbler # found via dbus
|
|
|
|
pkgs.xfce.xfce4notifyd # found via dbus
|
2011-08-23 00:52:13 +02:00
|
|
|
]
|
2010-08-10 01:15:39 +02:00
|
|
|
++ optional config.powerManagement.enable pkgs.xfce.xfce4_power_manager;
|
2010-08-09 00:45:54 +02:00
|
|
|
|
2010-08-09 23:59:34 +02:00
|
|
|
environment.pathsToLink =
|
2013-08-15 16:37:53 +02:00
|
|
|
[ "/share/xfce4" "/share/themes" "/share/mime" "/share/desktop-directories" "/share/gtksourceview-2.0" ];
|
2011-09-05 22:37:06 +02:00
|
|
|
|
2014-03-12 14:16:11 +01:00
|
|
|
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.xfce.gvfs}/lib/gio/modules" ];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-08-23 01:10:24 +02:00
|
|
|
# Enable helpful DBus services.
|
2013-04-04 09:53:27 +02:00
|
|
|
services.udisks2.enable = true;
|
2012-09-21 17:03:07 +02:00
|
|
|
services.upower.enable = config.powerManagement.enable;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2010-08-09 00:45:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|