adyya-flake/art.mod.nix
Ittihadyya 3b3bbb61c3
Some checks failed
/ Check formatting (push) Failing after 1m50s
added prometheus
2024-12-20 13:12:54 +02:00

26 lines
588 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 # straight up doesn't work
];
}
)
];
}