nixdots/options/system.nix
2024-03-23 21:48:54 +01:00

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