1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-06 16:57:03 +00:00

firefox: correct vendorPath of firefox forks (#6421)

The path for messaging hosts seems to have been
~/.mozilla/native-messaging-hosts/ and ~/Library/Application Support/Mozilla so vendorPath has been adjusted
This commit is contained in:
Kilian Mio 2025-02-16 17:44:50 +01:00 committed by GitHub
parent eb44c1601e
commit ec130e7009
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

View file

@ -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"; };
})
];
}

View file

@ -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;