all repos — dotfiles @ 625b5d8aaec0f366b88a265cc4bd4e823bf7bb85

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;
}