Skip to content

Commit

Permalink
firefox: correct vendorPath of firefox forks (#6421)
Browse files Browse the repository at this point in the history
The path for messaging hosts seems to have been
~/.mozilla/native-messaging-hosts/ and ~/Library/Application Support/Mozilla so vendorPath has been adjusted
  • Loading branch information
Mikilio authored Feb 16, 2025
1 parent eb44c16 commit ec130e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions modules/programs/floorp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ in {

platforms.linux = {
configPath = ".floorp";
vendorPath = ".floorp";
vendorPath = ".mozilla";
};
platforms.darwin = {
configPath = "Library/Application Support/Floorp";
vendorPath = "Library/Application Support/Mozilla";
};
platforms.darwin = { configPath = "Library/Application Support/Floorp"; };
})
];
}
4 changes: 2 additions & 2 deletions modules/programs/librewolf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ in {
unwrappedPackageName = "librewolf-unwrapped";

platforms.linux = {
vendorPath = ".librewolf";
configPath = ".librewolf";
vendorPath = ".mozilla";
};
platforms.darwin = {
vendorPath = "Library/Application Support/LibreWolf";
configPath = "Library/Application Support/LibreWolf";
vendorPath = "Library/Application Support/Mozilla";
};

enableBookmarks = false;
Expand Down

0 comments on commit ec130e7

Please sign in to comment.