This commit is contained in:
rhiannon morris 2025-04-02 19:02:01 +02:00
parent 4a9e524f66
commit c35a67f490

View file

@ -23,14 +23,14 @@
];
makeApp = name: exe:
makeApp = pkgs: name: exe:
{ type = "app"; program = "${pkgs.${name}}/bin/${defaultTo name exe}"; };
linuxApps = pkgs: [
(makeApp "basilisk" null)
(makeApp "isabelle" null)
(makeApp "firefox-esr-alias" "firefox-esr")
(makeApp "inkscape-xwayland" "inkscape")
(makeApp pkgs "basilisk" null)
(makeApp pkgs "isabelle" null)
(makeApp pkgs "firefox-esr-alias" "firefox-esr")
(makeApp pkgs "inkscape-xwayland" "inkscape")
];