summary refs log tree commit diff stats
path: root/nix/.config/nixpkgs/config.nix
blob: 3b506937ce24f84d83a68325a55c2b8c578c22e7 (plain)
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;
}