marleyos/modules/nixos/wayland/hyprland/default.nix

19 lines
304 B
Nix
Raw Normal View History

2025-01-09 08:08:30 -08:00
{
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.marleyos.wayland.hyprland;
in {
options.marleyos.wayland.hyprland.enable = mkEnableOption "hyprland";
config = mkIf cfg.enable {
programs.hyprland = {
enable = true;
withUWSM = false;
};
};
}