nixos-config/packages/default.nix
2020-09-07 18:36:02 +08:00

14 lines
465 B
Nix
Executable File

[
(self: super: with super; {
# Add packages from the unstable channel with `pkgs.unstable.$PKG`.
unstable = import <nixpkgs-unstable> { inherit config; };
nur.foo-dogsquared = import (
fetchTarball "https://github.com/foo-dogsquared/nur-packages/archive/develop.tar.gz"
) { inherit pkgs; };
})
# The unstable branch of Emacs.
# (import (builtins.fetchTarball https://github.com/nix-community/emacs-overlay/archive/master.tar.gz))
]