Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 20, 2019 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/4756ab66852344007188c99a894aed51 to your computer and use it in GitHub Desktop.
Save ryantm/4756ab66852344007188c99a894aed51 to your computer and use it in GitHub Desktop.
{pkgs,...} :
{
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.zfs.enableUnstable = true;
# AMD GPU drivers
boot.kernelPatches = [
{ name = "amdgpu-config";
patch = null;
extraConfig = ''
DRM_AMD_DC_DCN1_0 y
'';
}
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment