Add lazy-apps

This commit is contained in:
JuliusFreudenberger 2025-06-08 01:06:42 +02:00
parent a28d26ed03
commit f43c558448
4 changed files with 132 additions and 12 deletions

View file

@ -14,6 +14,21 @@
obs-studio
xcolor
(pkgs.lazy-app.override {
pkg = pkgs.scribus;
desktopItem = pkgs.makeDesktopItem {
name = "Scribus";
exec = "scribus %f";
icon = "scribus";
desktopName = "Scribus";
comment = "Page Layout and Publication";
categories = [ "Qt" "Graphics" "Publishing" ];
mimeTypes = [
"application/vnd.scribus"
];
};
})
];
}