nixos/home/plasma/home.nix

52 lines
1,013 B
Nix
Raw Normal View History

2024-05-13 08:55:58 +08:00
{ 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";
2024-05-13 11:39:48 +08:00
wallpaper = ../../share/54345906_p0.jpg;
};
hotkeys.commands = {
launch-konsole = {
name = "Launch Konsole";
key = "Meta+Enter";
command = "konsole";
};
2024-05-13 08:55:58 +08:00
};
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";
};
}