This repository was archived by the owner on Dec 2, 2025. It is now read-only.

Description
I'm trying to set up a dev shell that can run the cursor-arm command to open the app. How would I go about adding this to my dev env flake?
Right now it looks like this.
Sorry if it's a annoying question, flakes are an enigma
{
description = "Development environment with bun";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # You can change this to a stable channel if preferred
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
bun
];
shellHook = ''
echo "Welcome to the Nix g++ development environment!"
'';
};
});
}