notenrechner/flake.nix
Frieder Hannenheim d8eaa98e36 basic notenrechner
2025-01-29 14:57:00 +01:00

23 lines
495 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
typescript
typescript-language-server
];
};
}
);
}