mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
19 lines
248 B
Nix
19 lines
248 B
Nix
#
|
|
# Some media creation tools that I don't use often
|
|
#
|
|
{
|
|
buildEnv,
|
|
#
|
|
pkgs,
|
|
}:
|
|
buildEnv {
|
|
name = "media-creation";
|
|
paths = [
|
|
pkgs.gimp
|
|
pkgs.inkscape
|
|
pkgs.aseprite
|
|
pkgs.blender
|
|
pkgs.xournalpp
|
|
pkgs.libreoffice
|
|
];
|
|
}
|