flake.nix: Use development shell from shell.nix

This commit is contained in:
adisbladis 2022-05-26 18:19:44 +08:00
parent d1df21fc5a
commit c9d91f60a7

View file

@ -21,11 +21,7 @@
in
{
defaultPackage = pkgs.callPackage ./default.nix { };
devShell = with pkgs; mkShell {
buildInputs = [
gomod2nix
];
};
devShell = import ./shell.nix { inherit pkgs; };
})
);
}