mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
brave: fix config dir path (#2173)
Changes install path for extensions from `~/.config/brave` to `~/.config/BraveSoftware/Brave-Browser` on Linux.
This commit is contained in:
parent
4971b9cad0
commit
9e3c402972
1 changed files with 4 additions and 2 deletions
|
@ -114,10 +114,12 @@ let
|
||||||
brave = "BraveSoftware/Brave-Browser";
|
brave = "BraveSoftware/Brave-Browser";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
linuxDirs = { brave = "BraveSoftware/Brave-Browser"; };
|
||||||
|
|
||||||
configDir = if pkgs.stdenv.isDarwin then
|
configDir = if pkgs.stdenv.isDarwin then
|
||||||
"Library/Application Support/${getAttr browser darwinDirs}"
|
"Library/Application Support/" + (darwinDirs."${browser}" or browser)
|
||||||
else
|
else
|
||||||
"${config.xdg.configHome}/${browser}";
|
"${config.xdg.configHome}/" + (linuxDirs."${browser}" or browser);
|
||||||
|
|
||||||
extensionJson = ext:
|
extensionJson = ext:
|
||||||
assert ext.crxPath != null -> ext.version != null;
|
assert ext.crxPath != null -> ext.version != null;
|
||||||
|
|
Loading…
Reference in a new issue