8 lines
130 B
Nix
8 lines
130 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.mine.shared = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.anything;
|
|
default = {};
|
|
};
|
|
}
|