aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nix/sources.nix5
-rw-r--r--shell.nix1
2 files changed, 6 insertions, 0 deletions
diff --git a/nix/sources.nix b/nix/sources.nix
index b2c9921b..cff6393d 100644
--- a/nix/sources.nix
+++ b/nix/sources.nix
@@ -1,5 +1,10 @@
{
nixpkgs = {
+ kb = builtins.fetchGit {
+ url = "https://github.com/kennyballou/nixpkgs.git";
+ ref = "override-erlang-emacs-mode";
+ rev = "a730bb1666e7614071a0c7b1ed4dac5ba5d03753";
+ };
unstable = builtins.fetchGit {
url = "https://github.com/NixOS/nixpkgs.git";
rev = "94b2848559b12a8ed1fe433084686b2a81123c99";
diff --git a/shell.nix b/shell.nix
index 391b92f6..f88d96bd 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,5 +1,6 @@
let
sources = import ./nix/sources.nix;
+ kb = sources.nixpkgs.kb;
unstable = sources.nixpkgs.unstable;
stable = sources.nixpkgs.stable;
home-manager = sources.home-manager;