nixos-config/profiles/nix/default.nix

51 lines
1.6 KiB
Nix
Raw Normal View History

2022-01-22 12:46:33 +04:00
{ pkgs, lib, inputs, config, ... }: {
2021-01-21 22:13:53 +04:00
nix = rec {
nixPath = lib.mkForce [ "self=/etc/self/compat" "nixpkgs=/etc/nixpkgs" ];
2021-01-21 22:13:53 +04:00
registry.self.flake = inputs.self;
2021-06-21 22:20:38 +04:00
registry.np.flake = inputs.nixpkgs;
2021-01-21 22:13:53 +04:00
2022-02-03 02:36:37 +04:00
nrBuildUsers = config.nix.settings.max-jobs;
2021-01-21 22:13:53 +04:00
optimise.automatic = true;
2022-02-03 02:36:37 +04:00
settings = {
2023-02-16 18:51:34 +04:00
use-xdg-base-directories = true;
2023-02-18 22:57:44 +04:00
builders-use-substitutes = true;
flake-registry = "${inputs.flake-registry}/flake-registry.json";
experimental-features = [ "nix-command" "flakes" ];
2022-02-03 02:36:37 +04:00
trusted-users = [ "root" "balsoft" "@wheel" ];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"serokell-1:aIojg2Vxgv7MkzPJoftOO/I8HKX622sT+c0fjnZBLj0="
];
substituters = [ "https://cache.nixos.org" ];
trusted-substituters = [
"s3://serokell-private-cache?endpoint=s3.eu-central-1.wasabisys.com&profile=serokell-private-cache-wasabi"
];
};
2022-03-15 13:33:19 +04:00
buildMachines = [
# tweag remote builder
{
hostName = "build01.tweag.io";
maxJobs = 24;
sshUser = "nix";
sshKey = "/root/.ssh/id_ed25519";
system = "x86_64-linux";
supportedFeatures = [ "benchmark" "big-parallel" "kvm" ];
}
2022-06-07 13:19:03 +04:00
{
hostName = "build02.tweag.io";
maxJobs = 24;
sshUser = "nix";
sshKey = "/root/.ssh/id_ed25519";
systems = [ "aarch64-darwin" "x86_64-darwin" ];
}
2022-03-15 13:33:19 +04:00
];
2021-01-21 22:13:53 +04:00
};
2021-06-08 20:35:21 +04:00
2021-06-13 21:59:08 +04:00
persist.state.directories = [ "/home/balsoft/.local/share/nix" ];
2021-06-08 20:35:21 +04:00
2021-01-21 22:13:53 +04:00
environment.etc.nixpkgs.source = inputs.nixpkgs;
2021-06-03 23:37:14 +04:00
environment.etc.self.source = inputs.self;
2021-01-21 22:13:53 +04:00
}