19 lines
413 B
Nix
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;
|
|
}
|