nix: migrate to `nixVersions.git`

This commit is contained in:
Harsh Shandilya 2024-05-02 18:01:21 +05:30
parent 84855c4cf2
commit 001be6bc4c
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@
options = "--delete-older-than 3d";
};
package = pkgs.nixUnstable;
package = pkgs.nixVersions.git;
registry = lib.mapAttrs (_: v: {flake = v;}) inputs;

View File

@ -28,7 +28,7 @@
nix = {
optimise.automatic = true;
package = pkgs.nixUnstable;
package = pkgs.nixVersions.git;
registry = lib.mapAttrs (_: v: {flake = v;}) inputs;

View File

@ -13,6 +13,6 @@
nerdfonts = prev.nerdfonts.override {
fonts = ["JetBrainsMono"];
};
nix = prev.nixUnstable;
nix = prev.nixVersions.git;
qbittorrent = prev.qbittorrent.override {guiSupport = false;};
}