all repos — dotfiles @ c8b91e75cb3692b438d9c728080b15112b4e9989

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