snowflake/shared/hyprland.nix
2025-06-04 13:02:03 +08:00

14 lines
171 B
Nix

{ lib, ... }:
let
inherit (lib) mkOption types;
in
{
options = {
shared.hyprland.enable = mkOption {
default = true;
type = types.bool;
};
};
}