Files
archived-linsa/flake.nix
2024-08-27 03:02:43 +03:00

23 lines
539 B
Nix

{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
inputs@{ nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = nixpkgs.lib.platforms.all;
perSystem =
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
packages = [
pkgs.bun
pkgs.nodejs
];
};
# TODO: Package LA using Nix
};
};
}