{ config, lib, ... }: { options.hyprland = { enable = lib.mkEnableOption "Enables hyprland"; }; # imports = [ # inputs.hyprland.nixosModules.default # ]; config.warnings = lib.mkIf config.hyprland.enable ['' hyprland.enable has been deprecated to allow the removal of hyprland from flake inputs. '']; # config.programs.hyprland.enable = lib.mkIf config.hyprland.enable true; }