33 lines
787 B
Nix
33 lines
787 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
imports = [
|
|
../../modules/gamemode.nix
|
|
../../modules/boot_params.nix
|
|
../../modules/ironbar_config.nix
|
|
];
|
|
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
|
programs.boot.boot_params = [
|
|
"amdgpu.ppfeaturemask=0xffffffff"
|
|
];
|
|
networking.hostName = "spaceship";
|
|
|
|
programs.gamemode = {
|
|
device = 0;
|
|
};
|
|
virtualisation.virtualbox.host.enable = true;
|
|
|
|
# enable hardware acceleration and rocm
|
|
hardware.xone.enable = true;
|
|
hardware.graphics.extraPackages = with pkgs; [
|
|
libvdpau-va-gl
|
|
vaapiVdpau
|
|
rocmPackages.clr.icd
|
|
rocm-opencl-runtime
|
|
];
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = lib.mkDefault true;
|
|
};
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
programs.ironbar.monitor = "DP-1";
|
|
}
|