all repos — dotfiles @ f82a7e7fcc485555f07cb5c9ca5e99e06ee04876

Superseded by nixfiles

nix/.config/nixpkgs/config.nix (view raw)

1
2
3
4
5
6
7
8
9
{ pkgs }: {
  packageOverrides = super: let
    self = super.pkgs;
  in with self; rec {
    myEmacs = super.callPackage ./emacs.nix {};
  };

  allowUnfree = true;
}