summary refs log tree commit diff stats
path: root/nix/.config/nixpkgs/config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/.config/nixpkgs/config.nix')
-rw-r--r--nix/.config/nixpkgs/config.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/nix/.config/nixpkgs/config.nix b/nix/.config/nixpkgs/config.nix
new file mode 100644
index 0000000..3b50693
--- /dev/null
+++ b/nix/.config/nixpkgs/config.nix
@@ -0,0 +1,9 @@
+{ pkgs }: {
+  packageOverrides = super: let
+    self = super.pkgs;
+  in with self; rec {
+    myEmacs = super.callPackage ./emacs.nix {};
+  };
+
+  allowUnfree = true;
+}