From ee390f869d662d99eac488e1edbe1486ada4a74f Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Tue, 12 Oct 2021 20:45:21 +0200 Subject: [PATCH] Revert "nix: Fix nix not working with local LFS repositories" This reverts commit 050359f8eeae13a3d6373dbbc4bdef42922d1e08. --- modules/nix.nix | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/modules/nix.nix b/modules/nix.nix index 4d31d55..27a259f 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -28,15 +28,7 @@ in nix = { # nix with flake support - # TODO: Remove override once nixUnstable that includes this commit is in nixpkgs - package = pkgs.nixUnstable.overrideAttrs (o: o // { - patches = [ - (pkgs.fetchpatch { - url = "https://github.com/nixos/nix/commit/d1bf7431bbb9c38bdb577661d8511d506a3955c4.patch"; - sha256 = "sha256-6ap0taVKrJU0VcpC4+AeqPBL5sLXKvBE5UX7I2YQqiU="; - }) - ]; - }); + package = pkgs.nixUnstable; registry = with inputs; { nixpkgs.flake = nixpkgs;