remove sieve script# (#62)

This commit is contained in:
Dennis
2024-02-03 22:00:35 +01:00
committed by GitHub
parent f746da7c4c
commit 66fb506e26
2 changed files with 17 additions and 6 deletions

View File

@ -10,9 +10,20 @@
kernelParams = [ "i915.force_probe=56a5" "i915.enable_guc=2" ];
};
nix.extraOptions = ''
allowed-uris = github: gitlab: git+https:// git+ssh:// https://
'';
nix = {
extraOptions = ''
allowed-uris = github: gitlab: git+https:// git+ssh:// https://
'';
buildMachines = [{
hostName = "localhost";
maxJobs = 2;
protocol = "ssh-ng";
speedFactor = 2;
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" ];
system = "x86_64-linux";
}];
};
nixpkgs.config.packageOverrides = pkgs: { vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; }; };