nixos/home/plasma/home.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

2024-05-13 08:55:58 +08:00
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.plasma;
image = ../../share/54345906_p0.jpg;
2024-05-13 08:55:58 +08:00
in mkIf cfg.enable {
programs.plasma = {
# https://github.com/pjones/plasma-manager
enable = true;
#overrideConfig = true;
2024-05-13 08:55:58 +08:00
workspace = {
lookAndFeel = "org.kde.breezedark.desktop";
wallpaper = image;
2024-05-13 11:39:48 +08:00
};
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;
kwalletrc.Wallet.Enabled = false;
kscreenlockerrc.Greeter.Wallpaper."org.kde.image".General.Image = image;
kscreenlockerrc.Greeter.Wallpaper."org.kde.image".General.PreviewImage = image;
2024-05-13 08:55:58 +08:00
};
} // cfg.extraConfig;
qt.enable = false;
qt.platformTheme.name = null;
# gtk theme
gtk.theme = {
package = pkgs.kdePackages.breeze-gtk;
name = "Breeze-Dark";
};
# gtk icons
gtk.iconTheme = {
package = pkgs.kdePackages.breeze-icons;
name = "breeze-dark";
};
}