nixnew/systems/lenovo.nix

18 lines
331 B
Nix
Raw Normal View History

2023-06-20 04:08:11 +00:00
{ pkgs, ... }: {
system.stateVersion = "23.11";
networking.hostName = "lenovo";
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
rocm-opencl-icd
amdvlk
];
extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
};
}