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

13 lines
199 B
Nix

{ osConfig, lib, ... }:
let
cfg = osConfig.ringofstorms.dePlasma;
inherit (lib) mkIf;
in
{
options = {};
config = mkIf cfg.enable {
programs.plasma = {
enable = true;
};
};
}