mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-30 19:14:19 +00:00
12 lines
186 B
Nix
12 lines
186 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
nixpkgs.config.rocmSupport = true;
|
|
|
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
|
}
|