27 lines
718 B
Nix
27 lines
718 B
Nix
{
|
|
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; [
|
|
nodejs_22
|
|
gnumake
|
|
nodePackages.pnpm
|
|
nodePackages.typescript-language-server # typescript
|
|
nodePackages.vscode-langservers-extracted # html, css, json, eslint
|
|
];
|
|
};
|
|
};
|
|
in
|
|
flake-utils.lib.eachDefaultSystem out;
|
|
|
|
}
|