13 lines
231 B
Nix
13 lines
231 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules.amd = { pkgs, lib, ... }: {
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
environment = {
|
|
systemPackages = [ pkgs.btop-rocm ];
|
|
};
|
|
};
|
|
}
|