notenrechner/flake.nix
Frieder Hannenheim a2e108f6e8 Initial Commit
2025-01-28 17:56:14 +01:00

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