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