options/modules: add local.modules.nvidia
This commit is contained in:
parent
71d3ad25df
commit
00b3302880
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
|||
{
|
||||
imports = [./hyprland.nix];
|
||||
imports = [
|
||||
./hyprland.nix
|
||||
./nvidia.nix
|
||||
];
|
||||
}
|
||||
|
|
7
modules/options/modules/nvidia.nix
Normal file
7
modules/options/modules/nvidia.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib) mkEnableOption;
|
||||
in {
|
||||
options.local.modules.nvidia = {
|
||||
enable = mkEnableOption "nvidia";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue