mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 00:19:00 +00:00
14 lines
510 B
Nix
14 lines
510 B
Nix
# Trying to be creative with coding while endlessly referring to some tutorials
|
|
# on the internet.
|
|
{ mkShell, supercollider, bonzomatic, processing, puredata, shaderc }:
|
|
|
|
mkShell {
|
|
packages = [
|
|
supercollider # It's a super tool for music who compensates the lack of musical talent for coding instead.
|
|
bonzomatic # Shadertoy for desktop bozos.
|
|
processing # All aboard the creative coding train.
|
|
puredata # Pure unadulterated data: all of them.
|
|
shaderc # Tools to be a shady person.
|
|
];
|
|
}
|