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

@ -5,6 +5,7 @@
substituters = [ "https://cache.alicehuston.xyz" "https://cache.nixos.org" "https://nix-community.cachix.org" ]; substituters = [ "https://cache.alicehuston.xyz" "https://cache.nixos.org" "https://nix-community.cachix.org" ];
trusted-substituters = [ "https://cache.alicehuston.xyz" "https://cache.nixos.org" "https://nix-community.cachix.org" ]; trusted-substituters = [ "https://cache.alicehuston.xyz" "https://cache.nixos.org" "https://nix-community.cachix.org" ];
trusted-public-keys = [ "cache.alicehuston.xyz:SJAm8HJVTWUjwcTTLAoi/5E1gUOJ0GWum2suPPv7CUo=%" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ]; trusted-public-keys = [ "cache.alicehuston.xyz:SJAm8HJVTWUjwcTTLAoi/5E1gUOJ0GWum2suPPv7CUo=%" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
trusted-users = [ "root" ];
}; };
inputs = { inputs = {
@ -241,7 +242,7 @@
} // lib.mapAttrs (__: lib.mapAttrs (_: lib.hydraJob)) } // lib.mapAttrs (__: lib.mapAttrs (_: lib.hydraJob))
( (
let let
mkBuild = (type: mkBuild = type:
let let
getBuildEntryPoint = name: nixosSystem: getBuildEntryPoint = name: nixosSystem:
if builtins.hasAttr type nixosSystem.config.system.build then if builtins.hasAttr type nixosSystem.config.system.build then
@ -254,8 +255,7 @@
cfg cfg
else { }; else { };
in in
lib.filterAttrs (n: v: v != { }) (lib.mapAttrs getBuildEntryPoint self.nixosConfigurations) lib.filterAttrs (n: v: v != { }) (lib.mapAttrs getBuildEntryPoint self.nixosConfigurations);
);
in in
builtins.listToAttrs (map builtins.listToAttrs (map
(type: { (type: {

View File

@ -10,9 +10,20 @@
kernelParams = [ "i915.force_probe=56a5" "i915.enable_guc=2" ]; kernelParams = [ "i915.force_probe=56a5" "i915.enable_guc=2" ];
}; };
nix.extraOptions = '' nix = {
allowed-uris = github: gitlab: git+https:// git+ssh:// https:// 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; }; }; nixpkgs.config.packageOverrides = pkgs: { vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; }; };