fix: remove custom devshells from the flake

The definition of the dev shell in the flake file had several
issues when opening a development shell. However, this is
unnecessary as mkPoetryApplication already creates a
default working dev shell.
This commit is contained in:
fusion44 2023-12-27 22:10:44 +01:00 committed by Pavol Rusnak
parent 1933d896cb
commit d6ac3d2672

View file

@ -18,14 +18,6 @@
projectName = "lnbits";
in
{
devShells = forAllSystems (system: pkgs: {
default = pkgs.mkShell {
buildInputs = with pkgs; [
nodePackages.prettier
poetry-core
];
};
});
overlays = {
default = final: prev: {
${projectName} = self.packages.${prev.stdenv.hostPlatform.system}.${projectName};