all repos — nixfiles @ ae050e529e4b08bcf025e1c4e77a3da5a6c0ef80

System and user configuration, managed by nix and home-manager

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