mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
chromium: fix preinstallation of crx files
We currently check `isPath` and `isString` on crxPath and version respectively, which is 1. pointless because the module system already does such checks, and 2. wrong because isPath means path literal; a derivation therefore is not a path.
This commit is contained in:
committed by
Robert Helgesson
parent
b0c8727286
commit
c33b1777b6
@@ -116,15 +116,15 @@ let
|
||||
"${config.xdg.configHome}/${browser}";
|
||||
|
||||
extensionJson = ext:
|
||||
assert ext.crxPath != null -> ext.version != null;
|
||||
with builtins; {
|
||||
name = "${configDir}/External Extensions/${ext.id}.json";
|
||||
value.text = toJSON
|
||||
(if (isPath ext.crxPath && isString ext.version) then {
|
||||
external_crx = ext.crxPath;
|
||||
external_version = ext.version;
|
||||
} else {
|
||||
external_update_url = ext.updateUrl;
|
||||
});
|
||||
value.text = toJSON (if ext.crxPath != null then {
|
||||
external_crx = ext.crxPath;
|
||||
external_version = ext.version;
|
||||
} else {
|
||||
external_update_url = ext.updateUrl;
|
||||
});
|
||||
};
|
||||
|
||||
in mkIf cfg.enable {
|
||||
|
||||
Reference in New Issue
Block a user