mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
15 lines
245 B
Nix
15 lines
245 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
{
|
|
options.sm = lib.mkOption {
|
|
type = lib.types.strMatching "\\(.*\\)";
|
|
};
|
|
}
|
|
{
|
|
options.sm = lib.mkOption {
|
|
type = lib.types.strMatching "\\(.*\\)";
|
|
};
|
|
}
|
|
];
|
|
}
|