Files
cnix/modules/options/accounts/default.nix
2025-02-16 19:40:39 +01:00

21 lines
357 B
Nix

{
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";
};
};
}