added nvidia

This commit is contained in:
Harry 2025-02-09 17:30:51 +01:00
parent d79a02a266
commit d03c0990e8
2 changed files with 8 additions and 0 deletions

View file

@ -3,5 +3,6 @@
imports = [ imports = [
./bluetooth.nix ./bluetooth.nix
./pipewire.nix ./pipewire.nix
./nvidia.nix
]; ];
} }

View file

@ -0,0 +1,7 @@
{config, pkgs}:
{
hardware.graphics.enable = true;
hardware.nvidia.open = true;
}