15 lines
291 B
Nix
15 lines
291 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.ringofstorms.dePlasma;
|
|
inherit (lib) mkIf;
|
|
in
|
|
{
|
|
options = {};
|
|
config = mkIf cfg.enable {
|
|
# plasma-manager base enable
|
|
programs.plasma = {
|
|
enable = true;
|
|
# Tweak some global Plasma config if desired later
|
|
};
|
|
};
|
|
}
|