nixos-config/config/nix.nix
Charlotte 🦝 Delenk 8d4ce8e831
fix: Remove build nas
apparently build-nas just doesn’t work together with ca-derivations
2022-03-20 08:02:54 +01:00

71 lines
1.8 KiB
Nix

{ pkgs, lib, ... }: {
imports = [
./workarounds
];
nixpkgs.config.allowUnfree = true;
nixpkgs.config.contentAddressedByDefault = true;
nix = {
settings = {
sandbox = true;
trusted-users = [ "@wheel" ];
require-sigs = false;
auto-optimise-store = true;
builders-use-substitutes = true;
substituters = [
"s3://nix-cache?scheme=https&endpoint=cache.int.chir.rs"
];
};
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes ca-derivations
'';
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
optimise = {
automatic = true;
dates = [ "weekly" ];
};
buildMachines = [
#{
# hostName = "build-nas";
# systems = [ "x86_64-linux" ];
# maxJobs = 12;
# speedFactor = 1;
# supportedFeatures = [ "gccarch-znver1" "ca-derivations" ];
#}
{
hostName = "build-pc";
systems = [
"armv7l-linux"
"aarch64-linux"
"powerpc-linux"
"powerpc64-linux"
"powerpc64le-linux"
"riscv32-linux"
"riscv64-linux"
"wasm32-wasi"
"x86_64-linux"
"i686-linux"
];
maxJobs = 16;
speedFactor = 1;
supportedFeatures = [ "kvm" "nixos-test" "big-parallel" "benchmark" "gccarch-znver2" "ca-derivations" ];
}
];
distributedBuilds = true;
};
system.autoUpgrade = {
enable = true;
flake = "git+https://git.chir.rs/darkkirb/nixos-config.git?ref=staging";
flags = [
"--no-write-lock-file"
"-L" # print build logs
];
dates = "hourly";
randomizedDelaySec = "3600";
};
systemd.services.nix-daemon.environment.TMPDIR = "/build";
}