mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 21:42:51 -05:00
73 lines
2.2 KiB
Nix
73 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
dmsPkgs,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) types;
|
|
in
|
|
{
|
|
options.programs.dankMaterialShell = {
|
|
enable = lib.mkEnableOption "DankMaterialShell";
|
|
|
|
systemd = {
|
|
enable = lib.mkEnableOption "DankMaterialShell systemd startup";
|
|
restartIfChanged = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Auto-restart dms.service when dankMaterialShell changes";
|
|
};
|
|
};
|
|
enableSystemMonitoring = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to use system monitoring widgets";
|
|
};
|
|
enableClipboard = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to use the clipboard widget";
|
|
};
|
|
enableVPN = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to use the VPN widget";
|
|
};
|
|
enableBrightnessControl = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to have brightness/backlight support";
|
|
};
|
|
enableColorPicker = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to have color picking support";
|
|
};
|
|
enableDynamicTheming = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to have dynamic theming support";
|
|
};
|
|
enableAudioWavelength = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to have audio wavelength support";
|
|
};
|
|
enableCalendarEvents = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add calendar events support via khal";
|
|
};
|
|
enableSystemSound = lib.mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = "Add needed dependencies to have system sound support";
|
|
};
|
|
quickshell = {
|
|
package = lib.mkPackageOption dmsPkgs "quickshell" {
|
|
extraDescription = "The quickshell package to use (defaults to be built from source, in the commit 26531f due to unreleased features used by DMS).";
|
|
};
|
|
};
|
|
};
|
|
}
|