mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03: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 "\(.*\)";
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
}
|