attempt plasma flake

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-11-30 00:14:16 -06:00
parent dac2d0cf9c
commit 012e493ad3
12 changed files with 561 additions and 5 deletions

View file

@ -0,0 +1,19 @@
{ 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
};
};
}