diff --git a/config.nix b/config.nix index f5e7a9d..73ea624 100644 --- a/config.nix +++ b/config.nix @@ -1,19 +1,18 @@ let unstable = import { }; stable = import {}; + nur = import { pkgs = unstable; }; in { allowUnfree = true; packageOverrides = pkgs: { unstable = unstable; - nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { + nur = nur; + dan = import { pkgs = unstable; }; - dan = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") { - pkgs = unstable; - }; - danstable = import (builtins.fetchTarball "https://git.dodsorf.as/Dandellion/NUR/-/archive/master/NUR-master.tar.gz") { + danstable = { pkgs = stable; }; };