52 lines
1,013 B
Nix
52 lines
1,013 B
Nix
{ pkgs
|
|
, lib
|
|
, config
|
|
, ... }: with lib; let
|
|
cfg = config.passthrough.plasma;
|
|
in mkIf cfg.enable {
|
|
programs.plasma = {
|
|
# https://github.com/pjones/plasma-manager
|
|
enable = true;
|
|
overrideConfig = true;
|
|
|
|
workspace = {
|
|
lookAndFeel = "org.kde.breezedark.desktop";
|
|
wallpaper = ../../share/54345906_p0.jpg;
|
|
};
|
|
|
|
hotkeys.commands = {
|
|
launch-konsole = {
|
|
name = "Launch Konsole";
|
|
key = "Meta+Enter";
|
|
command = "konsole";
|
|
};
|
|
};
|
|
|
|
configFile = {
|
|
baloofilerc."Basic Settings"."Indexing-Enabled" = false;
|
|
};
|
|
} // cfg.extraConfig;
|
|
|
|
qt.enable = false;
|
|
qt.platformTheme.name = null;
|
|
|
|
# cursor theme
|
|
home.pointerCursor = {
|
|
package = pkgs.kdePackages.breeze;
|
|
name = "breeze_cursors";
|
|
size = 24;
|
|
};
|
|
|
|
# gtk theme
|
|
gtk.theme = {
|
|
package = pkgs.kdePackages.breeze-gtk;
|
|
name = "Breeze-Dark";
|
|
};
|
|
|
|
# gtk icons
|
|
gtk.iconTheme = {
|
|
package = pkgs.kdePackages.breeze-icons;
|
|
name = "breeze-dark";
|
|
};
|
|
}
|