23 lines
330 B
Nix
23 lines
330 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
cfg = config.krop.hm.desktop.plasma;
|
||
|
in
|
||
|
{
|
||
|
options.krop.hm.desktop.plasma = {
|
||
|
enable = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
example = true;
|
||
|
description = "Enable my plasma configuration";
|
||
|
};
|
||
|
};
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
|
||
|
};
|
||
|
}
|