2024-11-13 11:27:41 +01:00
|
|
|
{
|
|
|
|
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 {
|
2024-11-13 11:48:16 +01:00
|
|
|
programs.plasma = {
|
|
|
|
enable = true;
|
|
|
|
# TODO: config
|
|
|
|
};
|
2024-11-13 11:27:41 +01:00
|
|
|
};
|
|
|
|
}
|