2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2010-08-08 23:45:54 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2010-08-08 23:45:54 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
xcfg = config.services.xserver;
|
|
|
|
cfg = xcfg.desktopManager.xfce;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
2016-04-27 12:11:02 +01:00
|
|
|
services.xserver.desktopManager.xfce = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable the Xfce desktop environment.";
|
|
|
|
};
|
|
|
|
|
|
|
|
thunarPlugins = mkOption {
|
|
|
|
default = [];
|
|
|
|
type = types.listOf types.package;
|
|
|
|
example = literalExample "[ pkgs.xfce.thunar-archive-plugin ]";
|
|
|
|
description = ''
|
|
|
|
A list of plugin that should be installed with Thunar.
|
|
|
|
'';
|
|
|
|
};
|
2010-08-08 23:45:54 +01:00
|
|
|
|
2016-04-27 12:11:02 +01:00
|
|
|
noDesktop = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Don't install XFCE desktop components (xfdesktop, panel and notification daemon).";
|
|
|
|
};
|
2016-06-19 23:50:14 +01:00
|
|
|
|
|
|
|
extraSessionCommands = mkOption {
|
|
|
|
default = "";
|
|
|
|
type = types.lines;
|
|
|
|
description = ''
|
|
|
|
Shell commands executed just before XFCE is started.
|
|
|
|
'';
|
|
|
|
};
|
2015-10-10 17:16:42 +01:00
|
|
|
};
|
2016-04-27 12:11:02 +01:00
|
|
|
|
2010-08-08 23:45:54 +01:00
|
|
|
};
|
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2010-08-08 23:45:54 +01:00
|
|
|
config = mkIf (xcfg.enable && cfg.enable) {
|
|
|
|
|
|
|
|
services.xserver.desktopManager.session = singleton
|
|
|
|
{ name = "xfce";
|
|
|
|
bgSupport = true;
|
|
|
|
start =
|
|
|
|
''
|
2016-06-19 23:50:14 +01:00
|
|
|
${cfg.extraSessionCommands}
|
|
|
|
|
2013-03-04 09:50:11 +00:00
|
|
|
# Set GTK_PATH so that GTK+ can find the theme engines.
|
2014-02-06 23:25:50 +00:00
|
|
|
export GTK_PATH="${config.system.path}/lib/gtk-2.0:${config.system.path}/lib/gtk-3.0"
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2010-08-09 22:59:34 +01:00
|
|
|
# Set GTK_DATA_PREFIX so that GTK+ can find the Xfce themes.
|
|
|
|
export GTK_DATA_PREFIX=${config.system.path}
|
2010-10-10 23:35:18 +01:00
|
|
|
|
2016-04-25 22:37:18 +01:00
|
|
|
${pkgs.stdenv.shell} ${pkgs.xfce.xinitrc} &
|
|
|
|
waitPID=$!
|
2010-08-08 23:45:54 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-04-25 22:37:18 +01:00
|
|
|
services.xserver.updateDbusEnvironment = true;
|
|
|
|
|
2010-08-08 23:45:54 +01:00
|
|
|
environment.systemPackages =
|
2016-09-16 23:31:34 +01:00
|
|
|
[ pkgs.gtk2.out # To get GTK+'s themes and gtk-update-icon-cache
|
2010-08-09 22:59:34 +01:00
|
|
|
pkgs.hicolor_icon_theme
|
2013-08-15 17:02:55 +01:00
|
|
|
pkgs.tango-icon-theme
|
2010-08-09 22:59:34 +01:00
|
|
|
pkgs.shared_mime_info
|
2010-08-09 12:51:44 +01:00
|
|
|
pkgs.which # Needed by the xfce's xinitrc script.
|
|
|
|
pkgs.xfce.exo
|
2010-08-09 22:59:34 +01:00
|
|
|
pkgs.xfce.gtk_xfce_engine
|
|
|
|
pkgs.xfce.mousepad
|
|
|
|
pkgs.xfce.ristretto
|
2010-08-08 23:45:54 +01:00
|
|
|
pkgs.xfce.terminal
|
2015-10-10 17:16:42 +01:00
|
|
|
(pkgs.xfce.thunar.override { thunarPlugins = cfg.thunarPlugins; })
|
2010-08-09 22:59:34 +01:00
|
|
|
pkgs.xfce.xfce4icontheme
|
2010-08-09 12:51:44 +01:00
|
|
|
pkgs.xfce.xfce4session
|
2010-08-09 22:59:34 +01:00
|
|
|
pkgs.xfce.xfce4settings
|
2010-10-10 23:35:18 +01:00
|
|
|
pkgs.xfce.xfce4mixer
|
2014-10-23 00:14:21 +01:00
|
|
|
pkgs.xfce.xfce4volumed
|
2016-05-15 10:56:46 +01:00
|
|
|
pkgs.xfce.xfce4-screenshooter
|
2010-08-09 12:51:44 +01:00
|
|
|
pkgs.xfce.xfconf
|
|
|
|
pkgs.xfce.xfwm4
|
2010-08-09 22:59:34 +01:00
|
|
|
# This supplies some "abstract" icons such as
|
|
|
|
# "utilities-terminal" and "accessories-text-editor".
|
2015-07-28 16:04:34 +01:00
|
|
|
pkgs.gnome3.defaultIconTheme
|
2010-08-16 08:48:06 +01:00
|
|
|
pkgs.desktop_file_utils
|
2011-08-22 23:52:13 +01:00
|
|
|
pkgs.xfce.libxfce4ui
|
|
|
|
pkgs.xfce.garcon
|
2011-09-05 21:37:06 +01:00
|
|
|
pkgs.xfce.thunar_volman
|
|
|
|
pkgs.xfce.gvfs
|
2012-01-17 18:15:20 +00:00
|
|
|
pkgs.xfce.xfce4_appfinder
|
2013-11-18 20:08:25 +00:00
|
|
|
pkgs.xfce.tumbler # found via dbus
|
2011-08-22 23:52:13 +01:00
|
|
|
]
|
2016-04-27 12:11:02 +01:00
|
|
|
++ optional config.powerManagement.enable pkgs.xfce.xfce4_power_manager
|
2016-09-16 14:12:39 +01:00
|
|
|
++ optional config.networking.networkmanager.enable pkgs.networkmanagerapplet
|
2016-04-27 12:11:02 +01:00
|
|
|
++ optionals (!cfg.noDesktop)
|
|
|
|
[ pkgs.xfce.xfce4panel
|
|
|
|
pkgs.xfce.xfdesktop
|
|
|
|
pkgs.xfce.xfce4notifyd # found via dbus
|
|
|
|
];
|
2010-08-08 23:45:54 +01:00
|
|
|
|
2010-08-09 22:59:34 +01:00
|
|
|
environment.pathsToLink =
|
2013-08-15 15:37:53 +01:00
|
|
|
[ "/share/xfce4" "/share/themes" "/share/mime" "/share/desktop-directories" "/share/gtksourceview-2.0" ];
|
2011-09-05 21:37:06 +01:00
|
|
|
|
2014-03-12 13:16:11 +00:00
|
|
|
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.xfce.gvfs}/lib/gio/modules" ];
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2011-08-23 00:10:24 +01:00
|
|
|
# Enable helpful DBus services.
|
2013-04-04 08:53:27 +01:00
|
|
|
services.udisks2.enable = true;
|
2012-09-21 16:03:07 +01:00
|
|
|
services.upower.enable = config.powerManagement.enable;
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2010-08-08 23:45:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|