aboutsummaryrefslogtreecommitdiff
path: root/modules/user/desktops/hyprland.nix
blob: bc369bc0f5fa8e5167eb862b440272797a1f6b5f (plain) (blame)
1
2
3
4
5
6
{ config, lib, options, ... }:
{
  options.desktops = {
    enable = lib.mkOption { type = with lib.types; nullOr (enum [ "hyprland" ]); };
  };
}