2020-08-16 08:33:44 +00:00
|
|
|
[
|
|
|
|
(self: super: with super; {
|
2020-08-18 16:48:02 +00:00
|
|
|
|
|
|
|
# Add packages from the unstable channel with `pkgs.unstable.$PKG`.
|
2020-08-28 07:58:17 +00:00
|
|
|
unstable = import <nixpkgs-unstable> { inherit config; };
|
2020-09-07 10:36:02 +00:00
|
|
|
nur.foo-dogsquared = import (
|
|
|
|
fetchTarball "https://github.com/foo-dogsquared/nur-packages/archive/develop.tar.gz"
|
|
|
|
) { inherit pkgs; };
|
2020-08-16 08:33:44 +00:00
|
|
|
})
|
|
|
|
|
2020-08-18 16:48:02 +00:00
|
|
|
# The unstable branch of Emacs.
|
|
|
|
# (import (builtins.fetchTarball https://github.com/nix-community/emacs-overlay/archive/master.tar.gz))
|
2020-08-16 08:33:44 +00:00
|
|
|
]
|