Use non-deprecated overlay name

This commit is contained in:
Charlotte Van Petegem 2023-02-27 08:29:00 +01:00
parent b7cef89545
commit 04b3b36d53
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -15,7 +15,7 @@
flake-utils.lib.eachDefaultSystem flake-utils.lib.eachDefaultSystem
(system: (system:
let let
pkgs = import nixpkgs { inherit system; overlays = [ devshell.overlay ]; }; pkgs = import nixpkgs { inherit system; overlays = [ devshell.overlays.default ]; };
pkg = pkgs.stdenv.mkDerivation { pkg = pkgs.stdenv.mkDerivation {
pname = "www.chvp.be"; pname = "www.chvp.be";
version = "unstable"; version = "unstable";
@ -48,7 +48,7 @@
}; };
} }
) // { ) // {
overlay = (curr: prev: { overlays.default = (curr: prev: {
"www.chvp.be" = self.packages.${curr.system}.default; "www.chvp.be" = self.packages.${curr.system}.default;
}); });
}; };