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 16:08:30 +00:00
default = false;
description = "Whether this machine has an NVIDIA GPU.";
};
}