From 144f53f534c553dadbf80388e930d0bb494f7b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 20 Jun 2024 15:51:13 +0200 Subject: [PATCH] common: remove deprecated modules --- common/gpu/intel.nix | 11 ----------- common/gpu/nvidia-disable.nix | 11 ----------- common/gpu/nvidia.nix | 12 ------------ 3 files changed, 34 deletions(-) delete mode 100644 common/gpu/intel.nix delete mode 100644 common/gpu/nvidia-disable.nix delete mode 100644 common/gpu/nvidia.nix diff --git a/common/gpu/intel.nix b/common/gpu/intel.nix deleted file mode 100644 index d4256f6..0000000 --- a/common/gpu/intel.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - imports = [ ./intel ]; - - warnings = [ - '' - DEPRECATED: The module has been deprecated. - - Switch to using instead. - '' - ]; -} diff --git a/common/gpu/nvidia-disable.nix b/common/gpu/nvidia-disable.nix deleted file mode 100644 index 3f28c4e..0000000 --- a/common/gpu/nvidia-disable.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - imports = [ ./nvidia/disable.nix ]; - - warnings = [ - '' - DEPRECATED: The module has been deprecated. - - Switch to using instead. - '' - ]; -} diff --git a/common/gpu/nvidia.nix b/common/gpu/nvidia.nix deleted file mode 100644 index 9443b06..0000000 --- a/common/gpu/nvidia.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ - imports = [ ./nvidia/prime.nix ]; - - warnings = [ - '' - DEPRECATED: The module has been deprecated. - - Switch to using instead if you use prime offloading. - If you are using this without prime, consider switching to instead. - '' - ]; -}