mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 06:19:00 +00:00
![Gabriel Arazas](/assets/img/avatar_default.png)
I've also added a little module for version control systems now that I'm finding myself often packaging software.
15 lines
460 B
Nix
Executable File
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))
|
|
]
|