nix-dotfiles/nixosModules/services/hyprland/service.nix

20 lines
413 B
Nix
Raw Normal View History

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