2025-11-19 09:19:43 -08:00
|
|
|
{ config, lib, ... }:
|
2024-04-07 17:08:48 -07:00
|
|
|
|
|
|
|
|
{
|
2024-04-09 00:00:42 -07:00
|
|
|
|
2024-11-28 23:48:40 -08:00
|
|
|
options.hyprland = {
|
|
|
|
|
enable = lib.mkEnableOption "Enables hyprland";
|
2024-04-07 17:08:48 -07:00
|
|
|
};
|
|
|
|
|
|
2025-11-19 09:19:43 -08:00
|
|
|
# imports = [
|
|
|
|
|
# inputs.hyprland.nixosModules.default
|
|
|
|
|
# ];
|
2024-04-09 00:00:42 -07:00
|
|
|
|
2025-11-19 09:19:43 -08:00
|
|
|
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;
|
2024-04-07 17:08:48 -07:00
|
|
|
}
|