mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
35 lines
481 B
Nix
35 lines
481 B
Nix
{
|
|
pkgs,
|
|
pkgs-stable,
|
|
...
|
|
}: {
|
|
home-manager.users.jade = {pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
audacity
|
|
krita
|
|
# gimp-with-plugins
|
|
gimp
|
|
inkscape-with-extensions
|
|
obs-studio
|
|
kdenlive
|
|
|
|
scribus
|
|
lilypond
|
|
gnuplot
|
|
graphviz
|
|
povray
|
|
|
|
openscad-unstable
|
|
openscad-lsp
|
|
|
|
pkgs-stable.font-manager
|
|
fontforge-gtk
|
|
|
|
onlyoffice-bin_latest
|
|
typst
|
|
|
|
rawtherapee
|
|
];
|
|
};
|
|
}
|