feat(plasma): home-manager cursor and image
This commit is contained in:
parent
e60e11bc37
commit
f32845138e
|
@ -3,15 +3,16 @@
|
|||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.passthrough.plasma;
|
||||
image = ../../share/54345906_p0.jpg;
|
||||
in mkIf cfg.enable {
|
||||
programs.plasma = {
|
||||
# https://github.com/pjones/plasma-manager
|
||||
enable = true;
|
||||
overrideConfig = true;
|
||||
#overrideConfig = true;
|
||||
|
||||
workspace = {
|
||||
lookAndFeel = "org.kde.breezedark.desktop";
|
||||
wallpaper = ../../share/54345906_p0.jpg;
|
||||
wallpaper = image;
|
||||
};
|
||||
|
||||
hotkeys.commands = {
|
||||
|
@ -24,19 +25,15 @@ in mkIf cfg.enable {
|
|||
|
||||
configFile = {
|
||||
baloofilerc."Basic Settings"."Indexing-Enabled" = false;
|
||||
kwalletrc.Wallet.Enabled = false;
|
||||
kscreenlockerrc.Greeter.Wallpaper."org.kde.image".General.Image = image;
|
||||
kscreenlockerrc.Greeter.Wallpaper."org.kde.image".General.PreviewImage = image;
|
||||
};
|
||||
} // 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;
|
||||
|
|
Loading…
Reference in a new issue