config: added name and home directory options

This commit is contained in:
Devyn Freet
2026-07-10 23:04:36 -04:00
parent ae93a6803d
commit c1f029289c
2 changed files with 12 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
{ lib, ... }:
{
options = {
name = lib.mkOption { type = lib.types.str; };
homeDirectory = lib.mkOption { type = lib.types.path; };
};
}