2021-11-15 22:28:01 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.ptw.programs.plasma;
|
|
|
|
in {
|
|
|
|
options.ptw.programs.plasma = {
|
|
|
|
enable = lib.mkEnableOption "Enable KDE Plasma";
|
2022-03-21 14:24:57 +00:00
|
|
|
mobile = {
|
|
|
|
enable = lib.mkEnableOption "Enable Plasma Mobile";
|
|
|
|
};
|
|
|
|
wayland = {
|
|
|
|
enable = lib.mkOption {
|
|
|
|
default = true;
|
|
|
|
description = "Ignore NixOS 'recommendations' and use the Wayland session by default";
|
|
|
|
};
|
|
|
|
};
|
2022-07-13 18:19:53 +00:00
|
|
|
sddm = {
|
|
|
|
backgroundImage = lib.mkOption {
|
|
|
|
default = "${pkgs.sddm-sugar-dark}/usr/share/sddm/themes/sugar-dark/Background.jpg";
|
|
|
|
description = "The background image to use with sddm-sugar-dark";
|
|
|
|
};
|
|
|
|
screenWidth = lib.mkOption {
|
|
|
|
default = 1920;
|
|
|
|
description = "Width of the screen";
|
|
|
|
};
|
|
|
|
screenHeight = lib.mkOption {
|
|
|
|
default = 1080;
|
|
|
|
description = "Width of the screen";
|
|
|
|
};
|
|
|
|
};
|
2021-11-15 22:28:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
2022-07-13 17:35:32 +00:00
|
|
|
security.pam.services = {
|
|
|
|
login.enableKwallet = true;
|
|
|
|
greetd.enableKwallet = true;
|
|
|
|
};
|
2022-03-21 14:24:57 +00:00
|
|
|
services.xserver = {
|
2022-07-13 18:19:53 +00:00
|
|
|
displayManager.sddm = let
|
|
|
|
sddm-sugar-dark-configured = pkgs.sddm-sugar-dark.override {
|
|
|
|
config = {
|
|
|
|
General = {
|
|
|
|
Background = "${cfg.sddm.backgroundImage}";
|
|
|
|
ScaleImageCropped = true;
|
|
|
|
ScreenWidth = builtins.toString cfg.sddm.screenWidth;
|
|
|
|
ScreenHeight = builtins.toString cfg.sddm.screenHeight;
|
|
|
|
|
|
|
|
MainColor = "navajowhite";
|
|
|
|
AccentColor = "white";
|
|
|
|
RoundCorners = 20;
|
|
|
|
ScreenPadding = 0;
|
|
|
|
Font = "Noto Sans";
|
|
|
|
FontSize = "";
|
|
|
|
|
|
|
|
Locale = "";
|
|
|
|
HourFormat = "HH:mm";
|
|
|
|
DataFormat = "dddd, d of MMMM";
|
|
|
|
|
|
|
|
ForceLastUser = true;
|
|
|
|
ForcePasswordFocus = true;
|
|
|
|
ForceHideCompletePassword = true;
|
|
|
|
ForceHideVirtualKeyboardButton = false;
|
|
|
|
|
|
|
|
HeaderText = "Welcome!";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
2022-07-13 17:35:32 +00:00
|
|
|
enable = true;
|
|
|
|
autoNumlock = true;
|
2022-07-13 18:19:53 +00:00
|
|
|
|
|
|
|
theme = "${sddm-sugar-dark-configured}/usr/share/sddm/themes/sugar-dark";
|
2022-07-13 17:35:32 +00:00
|
|
|
};
|
2022-03-21 14:24:57 +00:00
|
|
|
desktopManager.plasma5 = {
|
|
|
|
enable = true;
|
2022-07-13 17:37:41 +00:00
|
|
|
runUsingSystemd = true;
|
|
|
|
supportDDC = true;
|
2022-03-21 14:24:57 +00:00
|
|
|
mobile.enable = cfg.mobile.enable;
|
2022-06-30 17:59:45 +00:00
|
|
|
|
|
|
|
kdeglobals = lib.mkIf cfg.mobile.enable {
|
|
|
|
KDE = {
|
|
|
|
StartDragDist = "10";
|
|
|
|
LookAndFeelPackage = "org.kde.plasma.phone";
|
|
|
|
};
|
|
|
|
|
|
|
|
Icons = {
|
|
|
|
Theme = "breeze";
|
|
|
|
};
|
|
|
|
|
|
|
|
General = {
|
|
|
|
ColorScheme = "breeze";
|
|
|
|
Name = "breeze";
|
|
|
|
XftHintStyle = "none";
|
|
|
|
XftSubPixel = "none";
|
|
|
|
shadeSortColumn = "true";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-07-13 18:19:53 +00:00
|
|
|
kwinrc = lib.mkIf cfg.mobile.enable {
|
2022-06-30 17:59:45 +00:00
|
|
|
Plugins = {
|
|
|
|
"org.kde.phone.multitaskingEnabled" = "false";
|
|
|
|
"kwin4_effect_eyeonscreenEnabled" = "false";
|
|
|
|
"kwin4_effect_windowapertureEnabled" = "false";
|
|
|
|
blurEnabled = "false";
|
|
|
|
contrastEnabled = "false";
|
|
|
|
};
|
|
|
|
|
|
|
|
Windows = {
|
|
|
|
Placement = "Maximizing";
|
|
|
|
};
|
|
|
|
|
|
|
|
TabBox = {
|
|
|
|
TouchBorderActive = "9";
|
|
|
|
TouchBorderAlternativeActive = "9";
|
|
|
|
BorderActivate = "9";
|
|
|
|
};
|
|
|
|
|
|
|
|
"Effect-PresentWindows" = {
|
|
|
|
BorderActivateAll = "9";
|
|
|
|
};
|
|
|
|
|
|
|
|
"org.kde.kdecoration2" = {
|
|
|
|
NoPlugin = "true";
|
|
|
|
};
|
|
|
|
|
|
|
|
TouchEdges = {
|
|
|
|
Left = "None";
|
|
|
|
Right = "None";
|
|
|
|
};
|
|
|
|
|
|
|
|
Wayland = {
|
|
|
|
InputMethod = "${pkgs.maliit-keyboard}/usr/share/applications/com.github.maliit.keyboard.desktop";
|
|
|
|
};
|
|
|
|
};
|
2022-03-21 14:24:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# See https://github.com/NixOS/nixpkgs/commit/a506f9c79700255c215dddb53455d5e2bed6c1af
|
2022-06-30 17:59:45 +00:00
|
|
|
displayManager = {
|
|
|
|
defaultSession = lib.mkIf cfg.wayland.enable "plasmawayland";
|
|
|
|
#sessionPackages = lib.mkIf cfg.mobile.enable [ pkgs.libsForQt5.plasma5.plasma-mobile ];
|
|
|
|
};
|
2021-11-15 22:28:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
xdg.portal = {
|
|
|
|
enable = true;
|
|
|
|
extraPortals = [ pkgs.xdg-desktop-portal-kde ];
|
|
|
|
};
|
|
|
|
|
2022-06-17 08:11:31 +00:00
|
|
|
environment.systemPackages = let
|
2022-07-13 17:37:41 +00:00
|
|
|
plasmaMobilePackages = with pkgs.libsForQt5; with plasma5; with kdeApplications; with kdeFrameworks; [
|
2022-06-30 17:59:45 +00:00
|
|
|
plasma-mobile
|
|
|
|
plasma-nano
|
|
|
|
pkgs.maliit-framework
|
|
|
|
pkgs.maliit-keyboard
|
2022-07-13 17:37:41 +00:00
|
|
|
];
|
2022-06-17 08:11:31 +00:00
|
|
|
kdePackages = with pkgs.libsForQt5; [
|
|
|
|
okular
|
|
|
|
kdeconnect-kde
|
|
|
|
breeze-gtk
|
|
|
|
bismuth
|
|
|
|
gwenview
|
|
|
|
yakuake
|
2022-06-30 17:59:45 +00:00
|
|
|
] ++ lib.optionals cfg.mobile.enable plasmaMobilePackages;
|
2022-06-17 08:11:31 +00:00
|
|
|
packages = with pkgs; [
|
|
|
|
index-fm
|
|
|
|
rsibreak
|
|
|
|
kalendar
|
|
|
|
kate
|
2022-06-30 17:59:45 +00:00
|
|
|
okular
|
2022-06-17 08:11:31 +00:00
|
|
|
|
|
|
|
# Some Gnome software
|
|
|
|
gnome.totem
|
|
|
|
];
|
|
|
|
in kdePackages ++ packages;
|
2021-11-15 22:28:01 +00:00
|
|
|
};
|
|
|
|
}
|