nix-dotfiles/nixosModules/services/hyprland/service.nix
2025-11-17 16:16:39 -08:00

19 lines
413 B
Nix

{ 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;
}