Merge pull request #994 from NixOS/modules-cleanup

common: remove deprecated modules
This commit is contained in:
Jörg Thalheim 2024-06-20 16:30:23 +02:00 committed by GitHub
commit 2f893e185c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 34 deletions

View file

@ -1,11 +0,0 @@
{
imports = [ ./intel ];
warnings = [
''
DEPRECATED: The <nixos-hardware/common/gpu/intel.nix> module has been deprecated.
Switch to using <nixos-hardware/common/gpu/intel> instead.
''
];
}

View file

@ -1,11 +0,0 @@
{
imports = [ ./nvidia/disable.nix ];
warnings = [
''
DEPRECATED: The <nixos-hardware/common/gpu/nvidia-disable.nix> module has been deprecated.
Switch to using <nixos-hardware/common/gpu/nvidia/disable.nix> instead.
''
];
}

View file

@ -1,12 +0,0 @@
{
imports = [ ./nvidia/prime.nix ];
warnings = [
''
DEPRECATED: The <nixos-hardware/common/gpu/nvidia.nix> module has been deprecated.
Switch to using <nixos-hardware/common/gpu/nvidia/prime.nix> instead if you use prime offloading.
If you are using this without prime, consider switching to <nixos-hardware/common/gpu/nvidia> instead.
''
];
}