nixdots/options/system.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";
};
};
}