dotfiles/flakes/de_plasma/home_manager/theme.nix
RingOfStorms (Joshua Bell) 012e493ad3 attempt plasma flake
2025-11-30 00:14:16 -06:00

19 lines
479 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.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
};
};
}