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

How to add to my devShell? #5

@quinm0

Description

@quinm0

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!"
      '';
    };
  });
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    questionFurther information is requested

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions