nixos-config/shared/nix.nix

24 lines
719 B
Nix
Raw Normal View History

2023-10-28 15:51:25 +02:00
{ 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;
settings = {
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
2024-01-04 00:13:46 +01:00
substituters = [
"https://cache.rfive.de"
2024-03-04 20:05:00 +01:00
# temp disabled until logging error is resolved
2024-04-12 11:01:18 +02:00
"https://cache.ifsr.de"
2024-01-04 00:13:46 +01:00
];
trusted-public-keys = [
"cache.rfive.de:of5d+o6mfGXQSR3lk6ApfDBr4ampAUaNHux1O/XY3Tw="
2024-04-12 11:01:18 +02:00
"cache.ifsr.de:y55KBAMF4YkjIzXwYOKVk9fcQS+CZ9RM1zAAMYQJtsg="
2024-01-04 00:13:46 +01:00
];
2023-10-28 15:51:25 +02:00
};
};
}