dotfiles/homes/x86_64-linux/christopher@cobalt/misc/creativity.nix

30 lines
682 B
Nix

{
pkgs,
system,
inputs,
...
}: {
home.packages = with pkgs; [
inputs.affinity-nix.packages.${system}.v3 # adobe suite replacement
gmic # greyc's magic
krita
krita-plugin-gmic
gimp
gimpPlugins.gmic
# gimpPlugins.bimp # batch image manipulation, broken atm
# rawtherapee
vcv-rack # eurorack synth simulator
supercollider # audio programming language
];
# - the nixpkgs version crashes once logged in
# - flatpaks somehow can't be installed via HM
# - need to manually a desktop entry for the flatpak
xdg.desktopEntries.bambustudio = {
name = "Bambu Studio";
exec = "flatpak run com.bambulab.BambuStudio";
};
}