all repos — nix-packages @ ad429abc269c0f387ee4b9a4ac2136e35c9db8ca

My personal collection of packages for nix

add overlay to flake

Alan Pearce
commit

ad429abc269c0f387ee4b9a4ac2136e35c9db8ca

parent

9a6efec3f5002132f13d38b42143295439c336a0

1 file changed, 3 insertions(+), 0 deletions(-)

changed files
M flake.nixflake.nix
@@ -15,6 +15,9 @@ ];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); in { + overlays = { + default = import ./overlay.nix; + }; legacyPackages = forAllSystems (system: (import ./default.nix { pkgs = import nixpkgs { inherit system; }; }));