This commit is contained in:
2025-02-16 19:40:39 +01:00
parent 2e5dcfe151
commit fa0407fbd6
31 changed files with 919 additions and 3047 deletions

View File

@@ -0,0 +1,20 @@
{
lib,
config,
...
}: let
inherit (lib) mkOption types;
in {
options.accounts = {
username = mkOption {
type = types.str;
default = "cnst";
description = "Set the desired username";
};
hostname = mkOption {
type = types.str;
default = "cnix";
description = "Set the desired hostname";
};
};
}