30 lines
575 B
Nix
30 lines
575 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
|
|
];
|
|
}
|
|
)
|
|
];
|
|
|
|
}
|