mirror of
https://github.com/nix-community/home-manager
synced 2024-11-30 06:59:45 +01:00
firefox: update docs example for nativeMessagingHosts
closes https://github.com/nix-community/home-manager/issues/4630 old way of cfg.enableTridactylNative is deprecated upstream
This commit is contained in:
parent
07c322a7cf
commit
7184dfe663
1 changed files with 4 additions and 4 deletions
|
@ -212,12 +212,12 @@ in {
|
||||||
example = literalExpression ''
|
example = literalExpression ''
|
||||||
pkgs.firefox.override {
|
pkgs.firefox.override {
|
||||||
# See nixpkgs' firefox/wrapper.nix to check which options you can use
|
# See nixpkgs' firefox/wrapper.nix to check which options you can use
|
||||||
cfg = {
|
nativeMessagingHosts = [
|
||||||
# Gnome shell native connector
|
# Gnome shell native connector
|
||||||
enableGnomeExtensions = true;
|
pkgs.gnome-browser-connector
|
||||||
# Tridactyl native connector
|
# Tridactyl native connector
|
||||||
enableTridactylNative = true;
|
pkgs.tridactyl-native
|
||||||
};
|
];
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue