Surely this won't work...

This commit is contained in:
niten 2022-08-22 13:56:19 -07:00
parent a9206a7a3d
commit d88883586a

View File

@ -38,7 +38,10 @@
devShells.default =
pkgs.mkShell { buildInputs = with pkgs; [ update-deps ]; };
}) // {
nixosModules.default = import ./module.nix;
nixosModules.default = {
nixpkgs.overlays = self.overlays.default;
modules = [ (import ./module.nix) ];
};
overlays.default = final: prev: {
fudo-pricebot = self.packages."${prev.system}".fudo-pricebot;
};