nixos-config/packages/default.nix
Gabriel Arazas d01e597918 Restructured the project setup
I've also added a little module for version control systems now that I'm finding myself often packaging software.
2020-09-06 04:50:16 +08:00

15 lines
460 B
Nix
Executable File

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