mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
16 lines
312 B
Nix
16 lines
312 B
Nix
|
{ lib, ... }: with lib; let
|
||
|
in
|
||
|
{
|
||
|
options.myOptions.system = {
|
||
|
hostname = mkOption {
|
||
|
description = "hostname for this system";
|
||
|
type = types.str;
|
||
|
};
|
||
|
|
||
|
username = mkOption {
|
||
|
description = "username for the primary admin account for this system";
|
||
|
type = types.str;
|
||
|
};
|
||
|
};
|
||
|
}
|