remove sieve script# (#62)
This commit is contained in:
parent
f746da7c4c
commit
66fb506e26
@ -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: {
|
||||||
|
@ -10,10 +10,21 @@
|
|||||||
kernelParams = [ "i915.force_probe=56a5" "i915.enable_guc=2" ];
|
kernelParams = [ "i915.force_probe=56a5" "i915.enable_guc=2" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.extraOptions = ''
|
nix = {
|
||||||
|
extraOptions = ''
|
||||||
allowed-uris = github: gitlab: git+https:// git+ssh:// https://
|
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; }; };
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user