This commit is contained in:
2026-02-25 12:28:00 -05:00
parent f3f76283b3
commit db6534a1eb
7 changed files with 148 additions and 0 deletions

7
modules/options.nix Normal file
View File

@@ -0,0 +1,7 @@
{ lib, ... }:
{
options = {
name = lib.mkOption { type = lib.types.str; };
};
}