all repos — nixfiles @ 8fc83608b84e7f7d36dcce00e4a43db20f9ca69e

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