dotfiles/flakes/de_plasma/home_manager/theme.nix
RingOfStorms (Joshua Bell) 7aedf97feb attempt some fixes
2025-11-30 00:49:21 -06:00

23 lines
485 B
Nix

{
osConfig,
lib,
...
}:
let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf;
in
{
options = { };
config = mkIf (cfg.enable && cfg.appearance.dark.enable) {
programs.plasma = {
workspace = {
colorScheme = "Breeze Dark";
lookAndFeel = "org.kde.breezedark.desktop";
cursor.theme = "breeze_cursors";
};
fonts = { }; # keep defaults
kscreenlocker = { }; # swaylock analog not applicable; left default
};
};
}