nixos/cpuminer-cryptonight: use more accurate int types

This commit is contained in:
h7x4
2025-09-22 16:36:17 +02:00
parent 016298079e
commit adccbd9442
@@ -43,7 +43,7 @@ in
description = "Password for mining server";
};
threads = lib.mkOption {
type = lib.types.int;
type = lib.types.ints.unsigned;
default = 0;
description = "Number of miner threads, defaults to available processors";
};