depot/hosts/options/hour/hardware.nix

19 lines
236 B
Nix
Raw Normal View History

2024-08-01 21:44:02 +03:00
{ lib, ... }:
with lib;
{
options.hardware = {
cpu = {
cores = mkOption {
type = types.ints.unsigned;
};
};
memory = {
gb = mkOption {
type = types.ints.unsigned;
};
};
};
}