1 files changed, 10 insertions(+), 0 deletions(-)
M flake.nix
M flake.nix => flake.nix +10 -0
@@ 84,6 84,16 @@
inherit hakyll-site blog;
default = blog;
};
+
+ devShells = {
+ default = pkgs.mkShell { buildInputs = with pkgs; [
+ haskellPackages.haskell-language-server
+ haskellPackages.hlint
+ haskellPackages.ormolu
+ cabal-install
+ awscli2
+ ]; };
+ };
}
);
}