summaryrefslogtreecommitdiff
path: root/profiles/hardware/nvidia.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-04-17 12:00:55 -0400
committerseth <[email protected]>2023-04-17 12:01:21 -0400
commit92ca826539092f33c8e19a19c7a9ea0def2aece0 (patch)
treec6ff98c3f645f189b559bc1a69904fec217a946c /profiles/hardware/nvidia.nix
parent98921a299be9f22bde9204e1fd05d0ea0fb0c6ed (diff)
move most configurations to modules
Diffstat (limited to 'profiles/hardware/nvidia.nix')
-rw-r--r--profiles/hardware/nvidia.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/profiles/hardware/nvidia.nix b/profiles/hardware/nvidia.nix
deleted file mode 100644
index 473eb81..0000000
--- a/profiles/hardware/nvidia.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- config,
- pkgs,
- ...
-}: {
- imports = [
- ./.
- ];
- hardware = {
- nvidia = {
- package = config.boot.kernelPackages.nvidiaPackages.stable;
- modesetting.enable = true;
- };
- opengl = {
- enable = true;
- # make steam work
- driSupport32Bit = true;
- extraPackages = with pkgs; [
- vaapiVdpau
- ];
- };
- };
-
- services.xserver.videoDrivers = ["nvidia"];
-}