Files
publisher-dashboard/devenv.nix
RevIQ e387d8c123 Quote process names with hyphens in devenv.nix
Nix attribute names with hyphens need to be quoted.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-08 08:05:31 +08:00

22 lines
352 B
Nix

{ pkgs, ... }:
{
packages = with pkgs; [
nixfmt-rfc-style
biome
git
];
dotenv.enable = true;
languages.javascript = {
enable = true;
bun.enable = true;
};
processes = {
"dev-publisher-dashboard".exec = "bun run --cwd apps/publisher-dashboard dev";
"build-watch".exec = "bun run build:watch:packages";
};
}