Initial setup

This commit is contained in:
outfoxxed 2023-06-19 21:08:11 -07:00
commit 9b4ec6e0a1
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 241 additions and 0 deletions

17
systems/lenovo.nix Normal file
View file

@ -0,0 +1,17 @@
{ 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
];
};
}