14 lines
171 B
Nix
14 lines
171 B
Nix
{ lib, ... }:
|
|
|
|
let
|
|
inherit (lib) mkOption types;
|
|
in
|
|
{
|
|
options = {
|
|
shared.hyprland.enable = mkOption {
|
|
default = true;
|
|
type = types.bool;
|
|
};
|
|
};
|
|
}
|