mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
16 lines
312 B
Nix
16 lines
312 B
Nix
{ lib, ... }: with lib; let
|
|
in
|
|
{
|
|
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";
|
|
};
|
|
};
|
|
}
|