infra/config/nix.nix

11 lines
260 B
Nix
Raw Normal View History

2023-05-06 06:49:46 +02:00
{
2023-07-03 03:33:35 +02:00
nix = {
gc.automatic = true;
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
2023-07-05 21:41:15 +02:00
inherit ((import ../flake.nix).nixConfig) extra-trusted-substituters extra-trusted-public-keys;
2023-07-03 03:33:35 +02:00
};
};
2023-05-06 06:49:46 +02:00
}