{
  description = "Pleshevski personal site";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }:
    let
      out = system:
        let
          pkgs = import nixpkgs { inherit system; };
        in
        {
          devShells.default = pkgs.mkShell {
            buildInputs = with pkgs; [
              pre-commit
              nodejs_22
              gnumake
              pnpm
              nodePackages.typescript-language-server # typescript
              nodePackages.vscode-langservers-extracted # html, css, json, eslint
            ];
          };
        };
    in
    flake-utils.lib.eachDefaultSystem out;

}