7 lines
182 B
Nix
7 lines
182 B
Nix
{lib, ...}: {
|
|
options.marleyos.hasNvidia = lib.mkOption {
|
|
type = with lib.types; bool;
|
|
default = false;
|
|
description = "Whether this machine has an NVIDIA GPU.";
|
|
};
|
|
}
|