Reformat everything
All checks were successful
/ test (push) Successful in 32s

This commit is contained in:
Andrea Ciceri 2024-09-20 11:37:17 +02:00
parent 5f644d0ccd
commit a394b9cefd
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg
167 changed files with 2795 additions and 2122 deletions

View file

@ -2,9 +2,9 @@
config,
lib,
fleetFlake,
pkgs,
...
}: {
}:
{
nix = {
optimise.automatic = true;
@ -35,7 +35,7 @@
# deprecated-features = [ "url-literals" ];
};
nixPath = ["nixpkgs=${fleetFlake.inputs.nixpkgs}"];
nixPath = [ "nixpkgs=${fleetFlake.inputs.nixpkgs}" ];
extraOptions = ''
experimental-features = nix-command flakes impure-derivations
@ -48,7 +48,8 @@
options = "--delete-older-than 180d";
};
registry = lib.mkForce ({
registry = lib.mkForce (
{
nixpkgs.to = {
type = "path";
path = fleetFlake.inputs.nixpkgs;
@ -71,7 +72,8 @@
type = "path";
path = "/home/${config.ccr.username}/.config/emacs";
};
}));
})
);
distributedBuilds = true;
buildMachines =
@ -79,7 +81,12 @@
hostName = "sisko.fleet";
system = "aarch64-linux";
maxJobs = 7;
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
supportedFeatures = [
"kvm"
"nixos-test"
"big-parallel"
"benchmark"
];
protocol = "ssh-ng";
sshUser = "root";
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";
@ -88,7 +95,12 @@
hostName = "mac.staging.mlabs.city?remote-program=/run/current-system/sw/bin/nix-store";
system = "x86_64-darwin";
maxJobs = 4;
supportedFeatures = ["kvm" "nixos-test" "big-parallel" "benchmark"];
supportedFeatures = [
"kvm"
"nixos-test"
"big-parallel"
"benchmark"
];
protocol = "ssh";
sshUser = "root";
sshKey = "/home/${config.ccr.username}/.ssh/id_rsa";