mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
20 lines
515 B
Nix
20 lines
515 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.
|
|
];
|
|
}
|