diff options
Diffstat (limited to 'nixpkgs/kusanagi.nix')
-rw-r--r-- | nixpkgs/kusanagi.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/nixpkgs/kusanagi.nix b/nixpkgs/kusanagi.nix index bb61451..72d67e9 100644 --- a/nixpkgs/kusanagi.nix +++ b/nixpkgs/kusanagi.nix @@ -1,4 +1,11 @@ -{ pkgs, ... }: { +{ pkgs, ... }: +let + nurSrc = builtins.fetchTarball { + url = + "https://github.com/nix-community/NUR/archive/687ed97c4379e9ad1346fc673e3e0fc88210de14.tar.gz"; + sha256 = "sha256:0pxljc5bzcwb8c43qmm5l49p03snq7piqnshglqday2dw6cfcd6l"; + }; +in { imports = [ ./common.nix ]; programs.bash.profileExtra = '' @@ -12,10 +19,7 @@ ''; nixpkgs.config.packageOverrides = pkgs: { - nur = import (builtins.fetchTarball - "https://github.com/nix-community/NUR/archive/master.tar.gz") { - inherit pkgs; - }; + nur = import nurSrc { inherit pkgs; }; }; home.file.".config/qutebrowser/quickmarks".source = ../qutebrowser/quickmarks; |