fix(3p/overlays): Downgrade Nix to stable version for nix-serve

Where I'm using stable in the non-versioning sense of the word.

https: //github.com/edolstra/nix-serve/issues/28
Change-Id: I87869a62bc0f3b289950a79aabd4d2041390bb09
This commit is contained in:
Vincent Ambo 2021-11-21 23:52:03 +03:00 committed by tazjin
parent bc51bd99d9
commit 18c248547d

View file

@ -60,4 +60,8 @@ self: super: {
steam = super.steam.override {
extraPkgs = pkgs: with pkgs; [ pango harfbuzz libthai ];
};
# nix-serve does not work with nix 2.4
# https://github.com/edolstra/nix-serve/issues/28
nix-serve = super.nix-serve.override { nix = super.nix_2_3; };
}