diff --git a/index.html b/index.html index f4ce8e8ab..8d49c482a 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf or dconf.service?+
ca.desrt.dconf or dconf.service?This manual will eventually describe how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html index e0a5bb7f5..d754f2360 100644 --- a/options.html +++ b/options.html @@ -2873,27 +2873,36 @@ handles extension side-loading. <home-manager/modules/programs/firefox.nix>
programs.firefox.profiles.<name>.bookmarksPreloaded bookmarks. Note, this may silently overwrite any previously existing bookmarks! -
Type: attribute set of submodule
Default:
- {
+
Type: attribute set of bookmark submodule or list of bookmark submodule or directory submodule
Default:
+ [
- }
-
Example:
{
- wikipedia = {
+ ]
+ Example:
[
+ {
+ name = "wikipedia";
keyword = "wiki";
url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
- };
- "kernel.org" = {
+ }
+ {
+ name = "kernel.org";
url = "https://www.kernel.org";
- };
-}
+ }
+ {
+ name = "Nix sites";
+ bookmarks = [
+ {
+ name = "homepage";
+ url = "https://nixos.org/";
+ }
+ {
+ name = "wiki";
+ url = "https://nixos.wiki/";
+ }
+ ];
+ }
+]
Declared by:
<home-manager/modules/programs/firefox.nix>
- |
programs.firefox.profiles.<name>.bookmarks.<name>.keywordBookmark search keyword.
Type: null or string
Default: null
Declared by:
- <home-manager/modules/programs/firefox.nix>
- |
programs.firefox.profiles.<name>.bookmarks.<name>.nameBookmark name.
Type: string
Default: "‹name›"
Declared by:
- <home-manager/modules/programs/firefox.nix>
- |
programs.firefox.profiles.<name>.bookmarks.<name>.urlBookmark url, use %s for search terms.
Type: string
Declared by:
- <home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.extraConfigExtra preferences to add to user.js.
Type: strings concatenated with "\n"
Default: ""
Declared by: