nixos: hardware: graphics: remove 'amdvlk'
It's been fully deprecated, the package was removed.
This commit is contained in:
parent
5cd9155a58
commit
a1d08876a8
1 changed files with 0 additions and 9 deletions
|
|
@ -15,8 +15,6 @@ in
|
||||||
|
|
||||||
amd = {
|
amd = {
|
||||||
enableKernelModule = lib.my.mkDisableOption "Kernel driver module";
|
enableKernelModule = lib.my.mkDisableOption "Kernel driver module";
|
||||||
|
|
||||||
amdvlk = lib.mkEnableOption "Use AMDVLK instead of Mesa RADV driver";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
intel = {
|
intel = {
|
||||||
|
|
@ -35,13 +33,6 @@ in
|
||||||
(lib.mkIf (cfg.gpuFlavor == "amd") {
|
(lib.mkIf (cfg.gpuFlavor == "amd") {
|
||||||
hardware.amdgpu = {
|
hardware.amdgpu = {
|
||||||
initrd.enable = cfg.amd.enableKernelModule;
|
initrd.enable = cfg.amd.enableKernelModule;
|
||||||
# Vulkan
|
|
||||||
amdvlk = lib.mkIf cfg.amd.amdvlk {
|
|
||||||
enable = true;
|
|
||||||
support32Bit = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware.graphics = {
|
hardware.graphics = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue