If your development bottleneck is that of I/O seek time during compiles, you're definitely doing software engineering wrong.
To elaborate:
Most programming involves a lot of work other than actual compiles:
- Requirements analysis
- Designing the solution
- Coordinating with other team members to understand the interfaces of their components
- Typing in the code
- Designing and coding test suites
- Running test suites and analyzing results
- Committing code to source code repository
- Documenting work
- Reading and writing bug logs
- Meetings, emails, and IM
Suppose the time you spend waiting for a compile is actually only 2% of each developer's day (even that is an overestimate). If you can increase the throughput of your compiles and cut compile time in half, now compiles are 1% of each developer's day instead of 2%. Not a huge change, and perhaps not the best use of $1000 per developer.
One way to look at it is how long it takes to pay off. Assuming a $100K salary, a $1K SSD drive that increases developer productivity by 1% pays off in a year. But the developer would have to be writing code like they were working in a sweat-shop, every day, for a year.
Instead, if you can invest the $1K per developer into some training to make one of the other work tasks I listed above more productive, you might get much better bang for the buck.
Or else use that money to hire someone to offload some work from the development team (e.g. QA Tester, Support Analyst, Sales Engineer, IT Technician, Project Manager, or Office Assistant).
Another suggestion: studies show that if you improve the workers' environment, it results in a 10% productivity improvement. It can be an expensive improvement, or something as simple as some wall art and houseplants. It doesn't matter -- it tends to result in +10% productivity improvement even for a modest improvement to the environment.
I suggest getting the office carpets shampooed, and clean up some of the accumulation of empty boxes and junk.
Re comment from @Zach Burlingame:
You're right, the cost/benefit ratio changes rapidly. This question originally came up in early 2009 -- over two years ago -- when SSD drives were much more expensive, and offered less capacity and reliability than they do today in mid-2011.
Today I see 120GB SSD drives for US $175, about $1.50/GB. I'll stick with my opinion that in February 2009, SSD drives were too costly for de facto use, but today in April 2011 they're a great choice for a developer machine.
Conventional hard drives cost $1.50/GB in 2003. Today, conventional desktop hard drives cost less than $0.10/GB and have capacities 10x those of today's SSD drives. So there are still important tradeoffs.
I also stick with my opinion that software engineering includes many activities that are not governed by the speed of disk seeks.