21 lines
325 B
Nix
21 lines
325 B
Nix
{pkgs, ...}: {
|
|
home-manager.users.jade = {pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
audacity
|
|
krita
|
|
gimp-with-plugins
|
|
inkscape-with-extensions
|
|
obs-studio
|
|
kdenlive
|
|
fspy
|
|
scribus
|
|
|
|
fontforge-gtk
|
|
|
|
onlyoffice-bin_latest
|
|
typst
|
|
|
|
rawtherapee
|
|
];
|
|
};
|
|
}
|