From ca50ba931a3563d367664cfa4b396031b9dd14ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 26 Jan 2021 23:00:16 +0100 Subject: [PATCH] fix: use stable nix to avoid ETag error --- configs/nix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/nix.nix b/configs/nix.nix index 3c7d9f4..437bd8f 100644 --- a/configs/nix.nix +++ b/configs/nix.nix @@ -2,9 +2,9 @@ { # enable `nix flake` nix = { - package = pkgs.nixUnstable; + package = pkgs.nix; # extraOptions = '' - # experimental-features = nix-command flakes + # experimental-features = nix-command # ''; }; }