From 6119c0e52a0f59e22918e66a089d8135b76d2f91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Sat, 2 Nov 2019 12:04:54 +0100 Subject: [PATCH] make nur and dan use unstable --- config.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config.nix b/config.nix index a230f13..b7b8681 100644 --- a/config.nix +++ b/config.nix @@ -1,14 +1,16 @@ +let unstable = import { }; in { allowUnfree = true; oraclejdk.accept_license = true; + packageOverrides = pkgs: { - unstable = import { }; + unstable = unstable; nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { - inherit pkgs; + pkgs = unstable; }; dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") { - inherit pkgs; + pkgs = unstable; }; }; }