adyya-flake/art.mod.nix
2024-11-26 15:30:26 +02:00

26 lines
557 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
darktable
obs-studio
# pureref # not updated on nixpkgs apparently
beeref
];
}
)
];
}