You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
324 B
Nix

8 years ago
packages: {config, ...}: {
environment.systemPackages = with packages; [
6 years ago
#nixpkgs.amdappsdk # For OpenCL support, at least theoretically...
8 years ago
];
services.xserver = {
6 years ago
videoDrivers = [/*"amdgpu-pro"*/ /*"amdgpu"*/ "ati" /*"ati_unfree"*/];
8 years ago
};
6 years ago
boot.blacklistedKernelModules = [ "amdgpu" ];
8 years ago
}