nichts/modules/options/system/hardware.nix

16 lines
256 B
Nix
Raw Normal View History

2024-08-16 22:46:01 +02:00
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkOption mkEnableOption;
inherit (lib.types) str package int;
in {
options.modules.system.hardware = {
nvidia = {
enable = mkEnableOption "Nvidia Nvidia graphics drivers";
};
};
}