Fix deprecated nix versions vars

This commit is contained in:
Nick Boultbee 2024-12-02 14:59:59 +00:00
parent 35b2808180
commit f2d5bd9472
2 changed files with 3 additions and 4 deletions

View file

@ -1,7 +1,6 @@
{ docker-nixpkgs
, pkgs
, nixUnstable
}:
docker-nixpkgs.nix.override {
nix = pkgs.nixVersions.latest or pkgs.nixUnstable;
nix = pkgs.nixVersions.latest;
}