all repos — archive/dotfiles @ ae050e529e4b08bcf025e1c4e77a3da5a6c0ef80

Superseded by nixfiles

nix: Add Emacs build with packages Install with `nix-env -iA nixpkgs.myEmacs` (depending on nix namespace)

Alan Pearce
commit

ae050e529e4b08bcf025e1c4e77a3da5a6c0ef80

parent

9d5b7f2a1412167e390a6e4f4c3c9401840ae147

1 file changed, 9 insertions(+), 0 deletions(-)

changed files
A 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; +}