adyya-flake/art.mod.nix

27 lines
671 B
Nix

{
capsaicin.home_modules = [
(
{pkgs, ...}: {
home.packages = with pkgs; [
blender # this is because capsaicin is the only one of the two who can take rendering something without starting a forest fire
];
}
)
];
personal.home_modules = [
(
{pkgs, ...}: {
home.packages = with pkgs; [
krita
inkscape
libresprite # tbh, it's kinda embarrasing how far behind this is on updates
aseprite
darktable
obs-studio
# pureref # not updated on nixpkgs apparently
# beeref # straight up doesn't work
];
}
)
];
}