10 lines
178 B
Nix
10 lines
178 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
myModules.enableKDE = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Enable KDE Plasma";
|
|
};
|
|
};
|
|
}
|