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:
parent
eb44c1601e
commit
ec130e7009
2 changed files with 7 additions and 4 deletions
|
@ -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"; };
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue