1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-22 18:21:58 +01:00
github.com-tboerger-nixos-c.../desktops/anubis/graphics.nix

25 lines
337 B
Nix
Raw Permalink Normal View History

{ config, lib, pkgs, ... }:
{
hardware = {
nvidia = {
powerManagement = {
enable = true;
};
modesetting = {
enable = true;
};
prime = {
sync = {
enable = true;
};
nvidiaBusId = "PCI:3:0:0";
intelBusId = "PCI:0:2:0";
};
};
};
}