From 0173d8ece4b8c6e2dd444d4d3ecdcff4358521d2 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Tue, 6 Jun 2023 14:42:32 -0400 Subject: [PATCH] Trying to fix nur --- flake.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 6526503..e8bdbce 100644 --- a/flake.nix +++ b/flake.nix @@ -4,14 +4,10 @@ { nixpkgs = { url = "github:NixOS/nixpkgs/nixos-unstable"; - overlays = [ - (self: super: { - nur = import (builtins.fetchTarball { - url = "https://github.com/nix-community/NUR/archive/3a6a6f4da737da41e27922ce2cfacf68a109ebce.tar.gz"; - sha256 = "0g0vxzwm24pvfwhy8f320x030kvacxln6n3b50kwg14cjrirr2yx"; - }) { inherit (super) pkgs; }; - }) - ]; + config.packageOverrides = pkgs: { + nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") + { inherit pkgs; }; + }; }; home-manager = { url = "github:nix-community/home-manager/master";