mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
11 lines
455 B
Nix
11 lines
455 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./hybrid ];
|
|
|
|
specialisation.ddg.configuration = {
|
|
# This specialisation is for the case where "DDG" (Dual-Direct GFX, A hardware feature that can enable in bios) is enabled, since the amd igpu is blocked at hardware level and the built-in display is directly connected to the dgpu, we no longer need the amdgpu and prime configuration.
|
|
system.nixos.tags = [ "Dual-Direct-GFX-Mode" ];
|
|
imports = [ ./nvidia ];
|
|
};
|
|
}
|