2015-01-19 17:39:23 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
xcfg = config.services.xserver;
|
2017-02-25 20:43:13 +00:00
|
|
|
cfg = xcfg.desktopManager.plasma5;
|
2015-01-19 17:39:23 +00:00
|
|
|
|
2017-05-16 16:56:41 +01:00
|
|
|
inherit (pkgs) kdeApplications plasma5 libsForQt5 qt5 xorg;
|
2015-01-19 17:39:23 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
2017-02-25 20:43:13 +00:00
|
|
|
services.xserver.desktopManager.plasma5 = {
|
2015-01-19 17:39:23 +00:00
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Enable the Plasma 5 (KDE 5) desktop environment.";
|
|
|
|
};
|
|
|
|
|
2016-11-14 15:59:22 +00:00
|
|
|
enableQt4Support = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Enable support for Qt 4-based applications. Particularly, install the
|
|
|
|
Qt 4 version of the Breeze theme and a default backend for Phonon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-01-19 17:39:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-12-28 13:53:19 +00:00
|
|
|
config = mkMerge [
|
|
|
|
(mkIf (xcfg.enable && cfg.enable) {
|
|
|
|
services.xserver.desktopManager.session = singleton {
|
2017-02-25 20:43:13 +00:00
|
|
|
name = "plasma5";
|
2016-12-28 13:53:19 +00:00
|
|
|
bgSupport = true;
|
|
|
|
start = ''
|
|
|
|
# Load PulseAudio module for routing support.
|
|
|
|
# See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/
|
|
|
|
${optionalString config.hardware.pulseaudio.enable ''
|
|
|
|
${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1"
|
|
|
|
''}
|
2016-04-14 22:34:45 +01:00
|
|
|
|
2017-10-20 00:22:03 +01:00
|
|
|
exec "${getBin plasma5.plasma-workspace}/bin/startkde"
|
2016-12-28 13:53:19 +00:00
|
|
|
'';
|
|
|
|
};
|
2015-01-19 17:39:23 +00:00
|
|
|
|
2017-01-29 07:58:12 +00:00
|
|
|
security.wrappers = {
|
2017-05-22 19:49:07 +01:00
|
|
|
kcheckpass.source = "${lib.getBin plasma5.plasma-workspace}/lib/libexec/kcheckpass";
|
|
|
|
"start_kdeinit".source = "${lib.getBin pkgs.kinit}/lib/libexec/kf5/start_kdeinit";
|
2017-01-29 07:58:12 +00:00
|
|
|
};
|
2015-12-11 12:58:28 +00:00
|
|
|
|
2017-02-26 12:49:15 +00:00
|
|
|
environment.systemPackages = with pkgs; with qt5; with libsForQt5; with plasma5; with kdeApplications;
|
2016-12-28 13:53:19 +00:00
|
|
|
[
|
2017-02-25 18:25:44 +00:00
|
|
|
frameworkintegration
|
|
|
|
kactivities
|
|
|
|
kauth
|
|
|
|
kcmutils
|
|
|
|
kconfig
|
|
|
|
kconfigwidgets
|
|
|
|
kcoreaddons
|
|
|
|
kdbusaddons
|
|
|
|
kdeclarative
|
|
|
|
kded
|
|
|
|
kdesu
|
|
|
|
kdnssd
|
|
|
|
kemoticons
|
|
|
|
kfilemetadata
|
|
|
|
kglobalaccel
|
|
|
|
kguiaddons
|
|
|
|
kiconthemes
|
|
|
|
kidletime
|
|
|
|
kimageformats
|
|
|
|
kinit
|
|
|
|
kio
|
|
|
|
kjobwidgets
|
|
|
|
knewstuff
|
|
|
|
knotifications
|
|
|
|
knotifyconfig
|
|
|
|
kpackage
|
|
|
|
kparts
|
|
|
|
kpeople
|
|
|
|
krunner
|
|
|
|
kservice
|
|
|
|
ktextwidgets
|
|
|
|
kwallet
|
|
|
|
kwallet-pam
|
|
|
|
kwalletmanager
|
|
|
|
kwayland
|
|
|
|
kwidgetsaddons
|
|
|
|
kxmlgui
|
|
|
|
kxmlrpcclient
|
|
|
|
plasma-framework
|
|
|
|
solid
|
|
|
|
sonnet
|
|
|
|
threadweaver
|
|
|
|
|
|
|
|
breeze-qt5
|
|
|
|
kactivitymanagerd
|
|
|
|
kde-cli-tools
|
|
|
|
kdecoration
|
|
|
|
kdeplasma-addons
|
|
|
|
kgamma5
|
|
|
|
khotkeys
|
|
|
|
kinfocenter
|
|
|
|
kmenuedit
|
|
|
|
kscreen
|
|
|
|
kscreenlocker
|
|
|
|
ksysguard
|
|
|
|
kwayland
|
|
|
|
kwin
|
|
|
|
kwrited
|
|
|
|
libkscreen
|
|
|
|
libksysguard
|
|
|
|
milou
|
|
|
|
plasma-integration
|
|
|
|
polkit-kde-agent
|
|
|
|
systemsettings
|
|
|
|
|
|
|
|
plasma-desktop
|
|
|
|
plasma-workspace
|
|
|
|
plasma-workspace-wallpapers
|
|
|
|
|
2017-05-16 16:56:41 +01:00
|
|
|
dolphin
|
2017-02-25 18:25:44 +00:00
|
|
|
dolphin-plugins
|
|
|
|
ffmpegthumbs
|
|
|
|
kdegraphics-thumbnailers
|
2017-05-16 16:56:41 +01:00
|
|
|
khelpcenter
|
2017-02-25 18:25:44 +00:00
|
|
|
kio-extras
|
2017-05-16 16:56:41 +01:00
|
|
|
konsole
|
|
|
|
oxygen
|
2017-02-25 18:25:44 +00:00
|
|
|
print-manager
|
|
|
|
|
|
|
|
breeze-icons
|
2016-12-28 13:53:19 +00:00
|
|
|
pkgs.hicolor_icon_theme
|
|
|
|
|
2017-02-25 18:25:44 +00:00
|
|
|
kde-gtk-config breeze-gtk
|
2016-12-28 13:53:19 +00:00
|
|
|
|
2017-10-12 00:29:23 +01:00
|
|
|
libsForQt56.phonon-backend-gstreamer
|
|
|
|
libsForQt5.phonon-backend-gstreamer
|
2016-12-28 13:53:19 +00:00
|
|
|
]
|
|
|
|
|
2017-02-25 18:25:44 +00:00
|
|
|
++ lib.optionals cfg.enableQt4Support [ breeze-qt4 pkgs.phonon-backend-gstreamer ]
|
2016-12-28 13:53:19 +00:00
|
|
|
|
|
|
|
# Optional hardware support features
|
2017-02-25 18:25:44 +00:00
|
|
|
++ lib.optional config.hardware.bluetooth.enable bluedevil
|
|
|
|
++ lib.optional config.networking.networkmanager.enable plasma-nm
|
|
|
|
++ lib.optional config.hardware.pulseaudio.enable plasma-pa
|
|
|
|
++ lib.optional config.powerManagement.enable powerdevil
|
|
|
|
++ lib.optional config.services.colord.enable colord-kde
|
|
|
|
++ lib.optionals config.services.samba.enable [ kdenetwork-filesharing pkgs.samba ];
|
2016-12-28 13:53:19 +00:00
|
|
|
|
|
|
|
environment.pathsToLink = [ "/share" ];
|
|
|
|
|
2017-01-30 13:03:42 +00:00
|
|
|
environment.etc = singleton {
|
2017-03-18 21:51:11 +00:00
|
|
|
source = xcfg.xkbDir;
|
2017-01-30 13:03:42 +00:00
|
|
|
target = "X11/xkb";
|
|
|
|
};
|
2015-01-19 17:39:23 +00:00
|
|
|
|
2017-02-25 18:25:44 +00:00
|
|
|
environment.variables = {
|
2017-03-03 23:34:27 +00:00
|
|
|
# Enable GTK applications to load SVG icons
|
2017-02-25 18:25:44 +00:00
|
|
|
GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache";
|
|
|
|
};
|
|
|
|
|
|
|
|
fonts.fonts = with pkgs; [ noto-fonts hack-font ];
|
2017-03-04 20:50:15 +00:00
|
|
|
fonts.fontconfig.defaultFonts = {
|
|
|
|
monospace = [ "Hack" "Noto Mono" ];
|
|
|
|
sansSerif = [ "Noto Sans" ];
|
|
|
|
serif = [ "Noto Serif" ];
|
|
|
|
};
|
2016-12-28 13:53:19 +00:00
|
|
|
|
2017-10-21 23:03:34 +01:00
|
|
|
programs.ssh.askPassword = mkDefault "${plasma5.ksshaskpass.out}/bin/ksshaskpass";
|
2016-12-28 13:53:19 +00:00
|
|
|
|
|
|
|
# Enable helpful DBus services.
|
|
|
|
services.udisks2.enable = true;
|
|
|
|
services.upower.enable = config.powerManagement.enable;
|
2017-01-18 18:50:04 +00:00
|
|
|
services.dbus.packages =
|
|
|
|
mkIf config.services.printing.enable [ pkgs.system-config-printer ];
|
2016-12-28 13:53:19 +00:00
|
|
|
|
|
|
|
# Extra UDEV rules used by Solid
|
|
|
|
services.udev.packages = [
|
|
|
|
pkgs.libmtp
|
|
|
|
pkgs.media-player-info
|
2015-12-11 12:58:28 +00:00
|
|
|
];
|
|
|
|
|
2016-12-28 13:53:19 +00:00
|
|
|
services.xserver.displayManager.sddm = {
|
2017-10-21 23:03:34 +01:00
|
|
|
theme = mkDefault "breeze";
|
2016-12-28 13:53:19 +00:00
|
|
|
};
|
2015-01-19 17:39:23 +00:00
|
|
|
|
2017-10-21 22:31:21 +01:00
|
|
|
boot.plymouth = {
|
|
|
|
theme = mkDefault "breeze";
|
|
|
|
themePackages = mkDefault [ pkgs.breeze-plymouth ];
|
|
|
|
};
|
|
|
|
|
2016-12-28 13:53:19 +00:00
|
|
|
security.pam.services.kde = { allowNullPassword = true; };
|
|
|
|
|
2017-02-15 00:38:52 +00:00
|
|
|
# Doing these one by one seems silly, but we currently lack a better
|
|
|
|
# construct for handling common pam configs.
|
|
|
|
security.pam.services.gdm.enableKwallet = true;
|
|
|
|
security.pam.services.kdm.enableKwallet = true;
|
|
|
|
security.pam.services.lightdm.enableKwallet = true;
|
|
|
|
security.pam.services.sddm.enableKwallet = true;
|
|
|
|
security.pam.services.slim.enableKwallet = true;
|
|
|
|
|
2016-12-28 13:53:19 +00:00
|
|
|
})
|
|
|
|
];
|
2015-01-19 17:39:23 +00:00
|
|
|
|
|
|
|
}
|