1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-18 10:16:54 +00:00

chromium: remove dependency between docs and config

This commit is contained in:
Robert Helgesson 2025-02-06 00:43:49 +01:00
parent 80ab22332b
commit 8e630fa766
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -68,30 +68,26 @@ let
updateUrl = mkOption {
type = str;
default = "https://clients2.google.com/service/update2/crx";
description = ''
URL of the extension's update manifest XML file. Linux only.
'';
default = "https://clients2.google.com/service/update2/crx";
visible = pkgs.stdenv.isLinux;
readOnly = pkgs.stdenv.isDarwin;
};
crxPath = mkOption {
type = nullOr path;
default = null;
description = ''
Path to the extension's crx file. Linux only.
'';
default = null;
visible = pkgs.stdenv.isLinux;
};
version = mkOption {
type = nullOr str;
default = null;
description = ''
The extension's version, required for local installation. Linux only.
'';
default = null;
visible = pkgs.stdenv.isLinux;
};
};
};