This commit is contained in:
Tao Tien 2025-10-16 17:25:13 -07:00
parent 90d3fecdc7
commit 01abe6ae00
6 changed files with 36 additions and 11 deletions

View file

@ -3,8 +3,7 @@
config,
pkgs,
...
}:
{
}: {
# nixpkgs.overlays = [
# (final: prev: {
# libinput = prev.libinput.overrideAttrs (old: {
@ -47,12 +46,6 @@
services.xserver.videoDrivers = [
"amdgpu"
];
hardware.graphics.extraPackages = with pkgs; [
amdvlk
];
hardware.graphics.extraPackages32 = with pkgs; [
driversi686Linux.amdvlk
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [
@ -75,6 +68,17 @@
"nixos-test"
];
}
{
hostName = "localhost";
systems = ["x86_64-linux" "i686-linux"];
supportedFeatures = [
"benchmark"
"big-parallel"
"gccarch-znver4"
"kvm"
"nixos-test"
];
}
];
nix.extraOptions = ''
builders-use-substitutes = true