dotfiles/flakes/de_plasma/home_manager/theme.nix
RingOfStorms (Joshua Bell) 7dfa665b73 fix hoem manager config access
2025-11-30 00:29:32 -06:00

23 lines
484 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";
cursorTheme = "breeze_cursors";
};
fonts = { }; # keep defaults
kscreenlocker = { }; # swaylock analog not applicable; left default
};
};
}