diff options
author | Vincent Ambo <mail@tazj.in> | 2021-11-21T20·52+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-11-23T12·02+0000 |
commit | 18c248547dd5dc0426a4a72ad90baed719f92c04 (patch) | |
tree | f9793dd8bb90f2fcf2cdb8cfb3d40eb3bb6729b8 /third_party/overlays | |
parent | bc51bd99d9509af4861304882b4236766a2a57e7 (diff) |
fix(3p/overlays): Downgrade Nix to stable version for nix-serve r/3083
Where I'm using stable in the non-versioning sense of the word. https: //github.com/edolstra/nix-serve/issues/28 Change-Id: I87869a62bc0f3b289950a79aabd4d2041390bb09
Diffstat (limited to 'third_party/overlays')
-rw-r--r-- | third_party/overlays/tvl.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/overlays/tvl.nix b/third_party/overlays/tvl.nix index 278fe13016ae..d1205287762f 100644 --- a/third_party/overlays/tvl.nix +++ b/third_party/overlays/tvl.nix @@ -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; }; } |