config/modules/hyprspace/options.nix

10 lines
161 B
Nix

{ lib, ... }:
{
options.services.hyprspace = {
services = lib.mkOption {
type = lib.types.attrsOf lib.types.path;
default = {};
};
};
}