diff --git a/flake.nix b/flake.nix index e5531d2..cfc19c3 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ outputs = { self, futils, nixpkgs, pre-commit-hooks }: { - overlay = final: prev: { + overlays.default = final: prev: { abacus = final.stdenv.mkDerivation { pname = "abacus"; version = "0.0.0"; @@ -62,7 +62,7 @@ }; } // futils.lib.eachDefaultSystem (system: let - pkgs = import nixpkgs { inherit system; overlays = [ self.overlay ]; }; + pkgs = import nixpkgs { inherit system; overlays = [ self.overlays.default ]; }; in { checks = {