lots
This commit is contained in:
20
modules/options/accounts/default.nix
Normal file
20
modules/options/accounts/default.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user