pinwheel: Fix firefox binary paths

This commit is contained in:
Alexander Heldt
2025-03-02 11:31:43 +01:00
parent 393975767b
commit 90c885d6cd

View File

@@ -29,14 +29,14 @@ let
ff = pkgs.writeShellApplication {
name = "ff";
text = ''
${wrapped}/bin/firefox --ProfileManager
${wrapped}/bin/firefox-devedition --ProfileManager
'';
};
ff-alex = pkgs.writeShellApplication {
name = "ff-alex";
text = ''
${wrapped}/bin/firefox -P alex --new-window "$@"
${wrapped}/bin/firefox-devedition -P alex --new-window "$@"
'';
};