diff --git a/flake.nix b/flake.nix index 58e656e..8e434dc 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ systems = import systems; - perSystem = { system, pkgs, ... }: { + perSystem = { config, system, pkgs, ... }: { _module.args.pkgs = import nixpkgs { inherit system; overlays = [ gomod2nix.overlays.default ]; @@ -29,6 +29,10 @@ src = ./.; modules = ./gomod2nix.toml; }; + + overlayAttrs = { + iecs = config.packages.default; + }; }; }; }