10 lines
161 B
Nix
10 lines
161 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.services.hyprspace = {
|
|
services = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.path;
|
|
default = {};
|
|
};
|
|
};
|
|
}
|