adyya-flake/art.mod.nix
Ittihadyya 95a2cb6ff5
Some checks failed
/ Check formatting (push) Failing after 1m44s
Removed beeref cause it wasn't used - fixed up the fonts.

2024-12-18 11:01:22 +02:00

26 lines
586 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
];
}
)
];
}