shells/creatives: init

This commit is contained in:
Gabriel Arazas 2023-09-26 22:55:07 +08:00
parent cc6b3cdcd0
commit 1b0dc9f7af
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 20 additions and 0 deletions

19
shells/creatives.nix Normal file
View File

@ -0,0 +1,19 @@
# 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.
];
}

View File

@ -2,6 +2,7 @@
with pkgs; {
cloud = callPackage ./cloud.nix { };
creatives = callPackage ./creatives.nix { };
flatpak = callPackage ./flatpak.nix { };
gnu = callPackage ./gnu.nix { };
gnome = callPackage ./gnome.nix { };