dotfiles/flakes/de_plasma/home_manager/theme.nix
RingOfStorms (Joshua Bell) e06f1e887b plasma wip
2025-12-01 09:47:04 -06:00

21 lines
376 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";
};
};
};
}