mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
23 lines
523 B
Nix
23 lines
523 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption mkOption types;
|
|
in {
|
|
options.myOptions.home-manager.wms = {
|
|
hyprland.enable = mkEnableOption ''
|
|
Hyprland wayland compositor.
|
|
'';
|
|
|
|
isWayland = mkOption {
|
|
type = types.bool;
|
|
default = with config.myOptions.home-manager.wms; (hyprland.enable);
|
|
description = ''
|
|
Whether to enable Wayland exclusive modules, this contains a variety
|
|
of packages, modules, overlays, XDG portals and so on.
|
|
'';
|
|
};
|
|
};
|
|
}
|