2023-09-11 20:23:04 +02:00
|
|
|
{
|
|
|
|
nixpkgs,
|
|
|
|
nixpkgs-git,
|
|
|
|
nixpkgs-stable,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2019-12-14 07:46:00 +01:00
|
|
|
cfg = config.machine;
|
2023-06-28 09:00:41 +02:00
|
|
|
emptyGlobalRegistry = pkgs.writeText "registry.json" ''{ "flakes": [], "version": 2 }'';
|
2019-12-14 07:46:00 +01:00
|
|
|
in {
|
2019-02-26 13:44:40 +01:00
|
|
|
nix = {
|
2023-01-29 14:13:13 +01:00
|
|
|
package = pkgs.nix;
|
2023-08-26 08:53:39 +02:00
|
|
|
registry = {
|
|
|
|
nixpkgs.flake = nixpkgs;
|
|
|
|
nixpkgs-git.flake = nixpkgs-git;
|
|
|
|
nixpkgs-stable.flake = nixpkgs-stable;
|
|
|
|
};
|
2022-02-02 20:21:14 +01:00
|
|
|
settings = {
|
|
|
|
max-jobs = 4;
|
|
|
|
cores = 1;
|
|
|
|
sandbox = true;
|
|
|
|
auto-optimise-store = true;
|
2023-09-11 20:23:04 +02:00
|
|
|
trusted-substituters =
|
|
|
|
[
|
|
|
|
"https://cache.nixos.org"
|
|
|
|
]
|
|
|
|
++ cfg.binaryCaches;
|
2023-04-15 16:27:27 +02:00
|
|
|
# TODO: integrate into sops
|
|
|
|
# trusted-public-keys = [ (lib.fileContents "${cfg.secretPath}/hydra_cache.pub") ];
|
2023-09-11 20:23:04 +02:00
|
|
|
substituters =
|
|
|
|
[
|
|
|
|
"https://cache.nixos.org"
|
|
|
|
]
|
|
|
|
++ cfg.binaryCaches;
|
|
|
|
allowed-users = ["root"] ++ (map (n: n.name) cfg.administrators);
|
2022-02-02 20:21:14 +01:00
|
|
|
};
|
2019-02-26 13:44:40 +01:00
|
|
|
extraOptions = ''
|
|
|
|
build-timeout = 86400 # 24 hours
|
2021-11-02 09:44:06 +01:00
|
|
|
experimental-features = nix-command flakes
|
2023-06-28 09:00:41 +02:00
|
|
|
flake-registry = ${emptyGlobalRegistry}
|
2019-02-26 13:44:40 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|