nixdots/options/system/default.nix
2024-04-12 18:25:26 +02:00

22 lines
403 B
Nix

{ lib, ... }: with lib; let
inherit (lib) mkOption;
in
{
imports = [
./impermanence.nix
./secure-boot.nix
];
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";
};
};
}