Track and save on groceries
1{
2 description = "Description for the project";
3
4 inputs = {
5 flake-parts.url = "github:hercules-ci/flake-parts";
6 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
7 };
8
9 outputs = inputs@{ flake-parts, ... }:
10 flake-parts.lib.mkFlake { inherit inputs; } {
11 systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
12 perSystem = { pkgs, ... }: {
13 devShells.default = pkgs.mkShell {
14 packages = with pkgs; [nodejs pnpm];
15 };
16 };
17 };
18}