home(plasma): add plasma-manager
This commit is contained in:
parent
7be8a330c9
commit
488114466f
4 changed files with 96 additions and 0 deletions
42
home/plasma/home.nix
Normal file
42
home/plasma/home.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ 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";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue