Fixed NUR version

This commit is contained in:
Jan-Bulthuis 2024-12-02 00:49:55 +01:00
parent ba7c0b1d2a
commit 48cb8e42e9
1 changed files with 4 additions and 3 deletions

View File

@ -21,9 +21,10 @@ in
# Enable NUR # Enable NUR
nixpkgs.config.packageOverrides = pkgs: { nixpkgs.config.packageOverrides = pkgs: {
# TODO: Pin the version # TODO: Pin the version
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { nur = import (builtins.fetchTarball {
inherit pkgs; url = "https://github.com/nix-community/NUR/archive/master.tar.gz";
}; sha256 = "0jjfvr325imrwg9ic8xha5y38jcp1s0z4pzwhvi0570aigzibbz4";
}) { inherit pkgs; };
}; };
programs.firefox = { programs.firefox = {