notenrechner/flake.nix

25 lines
510 B
Nix
Raw Normal View History

2025-01-28 17:56:14 +01:00
{
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
2025-01-29 14:57:00 +01:00
nodePackages.webpack-cli
2025-01-29 18:09:52 +01:00
entr
2025-01-28 17:56:14 +01:00
typescript
typescript-language-server
];
};
}
);
}