fix: set nix.registry to speed up nix shell calls

This commit is contained in:
Benjamin Bädorf 2023-11-06 23:30:57 +01:00
parent 282691cd64
commit 42a6348023
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -21,6 +21,13 @@
gc.automatic = true;
optimise.automatic = true;
registry = {
nixpkgs.flake = flake.inputs.nixpkgs;
unstable.flake = flake.inputs.nixpkgs-unstable;
master.flake = flake.inputs.nixpkgs-master;
system.flake = flake.self;
};
settings = {
# Improve nix store disk usage
auto-optimise-store = true;