2021-08-31 16:01:29 +00:00
|
|
|
{
|
|
|
|
pkgs
|
|
|
|
, lib
|
|
|
|
}:
|
|
|
|
|
2021-10-22 19:44:34 +00:00
|
|
|
let
|
|
|
|
importWrapper = file: import file {
|
|
|
|
pkgs = pkgs;
|
|
|
|
lib = lib;
|
|
|
|
};
|
|
|
|
in {
|
2021-08-31 16:01:29 +00:00
|
|
|
emacs = import (builtins.fetchGit {
|
|
|
|
url = "https://github.com/nix-community/emacs-overlay.git";
|
|
|
|
ref = "master";
|
|
|
|
rev = "ce0e9482d53d69bedc8416d8a984d00e17607826";
|
|
|
|
});
|
|
|
|
nur = import ./nur.nix pkgs;
|
2021-10-22 19:44:34 +00:00
|
|
|
unstable = importWrapper ./unstable.nix;
|
2021-08-31 16:01:29 +00:00
|
|
|
custom = import ./custom.nix pkgs;
|
|
|
|
simple = import ./simple.nix pkgs;
|
2021-09-06 19:13:35 +00:00
|
|
|
surface = import ./surface.nix pkgs;
|
2021-08-31 16:01:29 +00:00
|
|
|
}
|