Update options

This commit is contained in:
ItsDrike 2024-04-07 16:54:36 +02:00
parent 439f9a15f3
commit 935b4094a2
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
7 changed files with 14 additions and 14 deletions

View file

@ -0,0 +1,18 @@
{ lib, ... }: with lib; let
inherit (lib) mkOption;
in
{
imports = [ ];
options.myOptions.system = {
hostname = mkOption {
type = types.str;
description = "Hostname for this system";
};
username = mkOption {
type = types.str;
description = "Username for the primary admin account for this system";
};
};
}