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

10 lines
213 B
Nix
Raw Normal View History

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