Files
nix/hosts/common/configs/system/cpu/options.nix
Nikolaos Karaolidis 98ce774210 Reorganize imports
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-12-21 23:32:29 +02:00

18 lines
319 B
Nix

{ lib, ... }:
{
options.hardware.cpu =
with lib;
with types;
{
cores = mkOption {
type = ints.positive;
description = "The number of cpu cores.";
};
threads = mkOption {
type = ints.positive;
description = "The number of cpu threads.";
};
};
}