notenrechner/flake.nix
Frieder Hannenheim 154f04c202 styling
2025-01-29 18:09:52 +01:00

24 lines
510 B
Nix

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
just
toml2json
nodePackages.webpack-cli
entr
typescript
typescript-language-server
];
};
}
);
}