From 879de6fb0773d19c0a7ba82e124a1f4bb480cff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Thu, 31 Oct 2019 23:35:21 +0100 Subject: [PATCH] add NUR and own repo --- config.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/config.nix b/config.nix index 69baf10..4bb79af 100644 --- a/config.nix +++ b/config.nix @@ -1 +1,13 @@ -{ allowUnfree = true; } +{ + allowUnfree = true; + oraclejdk.accept_license = true; + + packageOverrides = pkgs: { + nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { + inherit pkgs; + }; + dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") { + inherit pkgs; + }; + }; +}