mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
16 lines
241 B
Nix
16 lines
241 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
{
|
|
options.sm = lib.mkOption {
|
|
type = lib.types.strMatching "\(.*\)";
|
|
};
|
|
}
|
|
{
|
|
options.sm = lib.mkOption {
|
|
type = lib.types.strMatching "\(.*\)";
|
|
};
|
|
}
|
|
];
|
|
}
|