This commit is contained in:
Nikita
2024-08-27 16:39:58 +03:00
parent 5526df6c53
commit 03ffc6a190
7 changed files with 80 additions and 69 deletions

View File

@@ -3,20 +3,13 @@
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
inputs@{ nixpkgs, 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
};
perSystem = { pkgs, ... }: {
devShells.default =
pkgs.mkShell { packages = [ pkgs.bun pkgs.nodejs ]; };
# TODO: Package LA using Nix
};
};
}