nix: Add Emacs build with packages Install with `nix-env -iA nixpkgs.myEmacs` (depending on nix namespace)
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; +}