even more changes

This commit is contained in:
Vali 2024-08-16 22:46:01 +02:00
commit c79f561cad
14 changed files with 120 additions and 108 deletions

View file

@ -0,0 +1,15 @@
{
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";
};
};
}