nixos-config/shared/nix.nix
2024-01-04 00:13:46 +01:00

22 lines
619 B
Nix

{ config, lib, nixpkgs, ... }:
{
nix = {
# expose all flake inputs through nix Path and registry
registry = {
nixpkgs.flake = nixpkgs;
};
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
# keep build-time deps around for offline-rebuilding
settings = {
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
substituters = [
"https://cache.rfive.de"
];
trusted-public-keys = [
"cache.rfive.de:of5d+o6mfGXQSR3lk6ApfDBr4ampAUaNHux1O/XY3Tw="
];
};
};
}