From 60071989233133c9bd79631cca4e51f86849a2eb Mon Sep 17 00:00:00 2001 From: Henry Denny Date: Mon, 16 Oct 2023 11:22:21 +0100 Subject: [PATCH] Move hdf5.nix into nix/overlays directory. (#69) * Move hdf5.nix file. * Correct import path. --- flake.nix | 2 +- hdf5.nix => nix/overlays/hdf5.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hdf5.nix => nix/overlays/hdf5.nix (100%) diff --git a/flake.nix b/flake.nix index 25ed77cd..ac69a570 100644 --- a/flake.nix +++ b/flake.nix @@ -16,7 +16,7 @@ pkgs = (import nixpkgs) { inherit system; overlays = [ - ( import ./hdf5.nix ) + ( import ./nix/overlays/hdf5.nix ) ]; }; diff --git a/hdf5.nix b/nix/overlays/hdf5.nix similarity index 100% rename from hdf5.nix rename to nix/overlays/hdf5.nix