depot/modules/nix-config/server.nix

28 lines
773 B
Nix
Raw Normal View History

{ pkgs, lib, config, inputs, tools, ... }:
2021-06-05 23:59:06 +03:00
let
fixPriority = x: if config.services.hydra.enable
then lib.mkForce x
else x;
in {
nix = {
2021-08-23 20:27:12 +03:00
package = inputs.nix-super.defaultPackage.${pkgs.system};
2021-06-05 23:59:06 +03:00
trustedUsers = [ "root" "@wheel" "@admins" ];
2021-06-05 23:59:06 +03:00
extraOptions = fixPriority ''
experimental-features = nix-command flakes
2021-06-05 23:59:06 +03:00
builders-use-substitutes = true
flake-registry = https://git.${tools.meta.domain}/private-void/registry/-/raw/master/registry.json
2021-06-05 23:59:06 +03:00
'';
binaryCaches = [ "https://cache.${tools.meta.domain}" ];
2021-06-05 23:59:06 +03:00
binaryCachePublicKeys = [ "cache.privatevoid.net:SErQ8bvNWANeAvtsOESUwVYr2VJynfuc9JRwlzTTkVg=" ];
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
}