marleyos/modules/nixos/options/hasNvidia/default.nix

8 lines
182 B
Nix
Raw Normal View History

{lib, ...}: {
options.marleyos.hasNvidia = lib.mkOption {
type = with lib.types; bool;
2025-01-09 08:08:30 -08:00
default = false;
description = "Whether this machine has an NVIDIA GPU.";
};
}