mirror of https://github.com/materusPL/Nixerus.git
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ config, pkgs, lib, inputs, materusFlake, materusPkgs, ... }:
|
|
{
|
|
imports =
|
|
[
|
|
./filesystem.nix
|
|
./boot.nix
|
|
|
|
];
|
|
hardware.firmware = with pkgs; [
|
|
linux-firmware
|
|
alsa-firmware
|
|
sof-firmware
|
|
];
|
|
hardware.cpu.amd.updateMicrocode = lib.mkForce true;
|
|
|
|
#extra
|
|
hardware.wooting.enable = true;
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
|
#Graphics
|
|
hardware.opengl.enable = true;
|
|
hardware.opengl.driSupport32Bit = true;
|
|
hardware.opengl.extraPackages = with pkgs; [
|
|
vaapiVdpau
|
|
libvdpau-va-gl
|
|
amdvlk
|
|
rocm-opencl-icd
|
|
rocm-opencl-runtime
|
|
materusPkgs.amdgpu-pro-libs.vulkan
|
|
materusPkgs.amdgpu-pro-libs.amf
|
|
];
|
|
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [
|
|
vaapiVdpau
|
|
pkgs.driversi686Linux.amdvlk
|
|
materusPkgs.i686Linux.amdgpu-pro-libs.vulkan
|
|
libvdpau-va-gl
|
|
];
|
|
|
|
#GPU bar size
|
|
services.udev.extraRules = ''
|
|
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x1002", ATTR{device}=="0x744c", ATTR{resource0_resize}="15"
|
|
ACTION=="add", SUBSYSTEM=="pci", ATTR{vendor}=="0x1002", ATTR{device}=="0x744c", ATTR{resource2_resize}="8"
|
|
'';
|
|
|
|
#Trim
|
|
services.fstrim = {
|
|
enable = true;
|
|
interval = "weekly";
|
|
};
|
|
|
|
}
|