This commit is contained in:
TilCreator 2024-05-01 18:38:43 +05:45 committed by GitHub
commit fcdb8e2829
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 5 deletions

View File

@ -10,13 +10,15 @@ let
jsonFormat = pkgs.formats.json { };
mozillaConfigPath =
if isDarwin then "Library/Application Support/Mozilla" else ".mozilla";
isLibrewolf = cfg.package.meta.mainProgram == "librewolf";
firefoxConfigPath = if isDarwin then
"Library/Application Support/Firefox"
firefoxConfigPath = if isLibrewolf then
(if isDarwin then "Library/Application Support/Librewolf" else ".librewolf")
else
"${mozillaConfigPath}/firefox";
(if isDarwin then
"Library/Application Support/Firefox"
else
".mozilla/firefox");
profilesPath =
if isDarwin then "${firefoxConfigPath}/Profiles" else firefoxConfigPath;