config/modules/nix-config/default.nix

82 lines
2.1 KiB
Nix
Raw Normal View History

2022-02-05 21:42:36 +02:00
{ pkgs, lib, config, inputs, ... }@args:
let
builder = {
systems = [ "x86_64-linux" "i686-linux" ];
speedFactor = 4;
supportedFeatures = [ "benchmark" "nixos-test" ];
sshKey = config.age.secrets.nixBuilderKey.path;
};
bigBuilder = builder // {
speedFactor = 16;
supportedFeatures = builder.supportedFeatures ++ [ "kvm" "big-parallel" ];
};
in {
age.secrets.nixBuilderKey = {
file = ../../secrets/builder_key.age;
mode = "0400";
};
nixpkgs.overlays = [
(self: super: {
nixSuper = inputs.nix-super.packages.x86_64-linux.default;
2022-02-05 21:42:36 +02:00
})
];
nix = {
package = pkgs.nixSuper;
settings = {
trusted-users = [ "root" "@wheel" ];
auto-optimise-store = true;
substituters = [
"https://cache.privatevoid.net"
"https://max.cachix.org?priority=90"
"https://reflex.privatevoid.net?priority=100"
2022-02-05 21:42:36 +02:00
];
trusted-public-keys = [
"cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg="
"max.cachix.org-1:oSMQ1zYLR8H4L17hfe6ETlI/d+VeiBykB8PbBdPtDJw="
];
};
extraOptions = ''
2022-08-08 22:46:09 +03:00
experimental-features = nix-command flakes repl-flake
2022-02-05 21:42:36 +02:00
warn-dirty = false
builders-use-substitutes = true
flake-registry = https://git.privatevoid.net/private-void/registry/-/raw/master/registry.json
2022-02-21 21:08:53 +02:00
max-free = ${toString (8 * 1024*1024*1024)}
min-free = ${toString (4 * 1024*1024*1024)}
2022-02-05 21:42:36 +02:00
'';
gc = {
automatic = true;
dates = "weekly";
2022-02-21 21:08:53 +02:00
options = "--delete-older-than 5d --max-freed 16G";
2022-02-05 21:42:36 +02:00
};
distributedBuilds = true;
buildMachines = [
(bigBuilder // {
2022-05-16 20:54:16 +03:00
sshUser = "ssh-ng://nixbuilder";
2022-02-05 21:42:36 +02:00
hostName = "animus.com";
maxJobs = 4;
})
2022-05-16 20:56:47 +03:00
(builder // {
sshUser = "ssh-ng://nix";
hostName = "prophet.node.privatevoid.net";
systems = [ "aarch64-linux" ];
})
2022-02-05 21:42:36 +02:00
] ++
(lib.optional (config.networking.hostName != "TITAN") (bigBuilder // {
2022-05-16 20:54:16 +03:00
sshUser = "ssh-ng://nix";
2022-02-05 21:42:36 +02:00
hostName = "titan.hypr";
speedFactor = 12;
maxJobs = 12;
}));
};
environment.systemPackages = [ pkgs.cachix ];
}