10 lines
213 B
Nix
10 lines
213 B
Nix
|
{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.";
|
||
|
};
|
||
|
}
|