mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-01-10 08:59:24 +01:00
28 lines
386 B
Nix
28 lines
386 B
Nix
{
|
|
pkgs,
|
|
pkgs-stable,
|
|
...
|
|
}: {
|
|
home-manager.users.jade = {pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
audacity
|
|
krita
|
|
gimp
|
|
inkscape-with-extensions
|
|
obs-studio
|
|
kdenlive
|
|
|
|
scribus
|
|
|
|
openscad-unstable
|
|
openscad-lsp
|
|
|
|
pkgs-stable.font-manager
|
|
fontforge-gtk
|
|
|
|
onlyoffice-bin_latest
|
|
|
|
rawtherapee
|
|
];
|
|
};
|
|
}
|