Firefox/ru: Difference between revisions
Created page with "=== Использовать Xinput2 ===" |
Created page with "<syntaxhighlight lang="nix"> # только если programs.firefox.enable == true programs.firefox.wrapperConfig = { pipewireSupport = true; };" |
||
(13 intermediate revisions by 2 users not shown) | |||
Line 8: | Line 8: | ||
Keep in mind that the NixOS and Home Manager modules have different options, so choose accordingly. | Keep in mind that the NixOS and Home Manager modules have different options, so choose accordingly. | ||
</div> | </div> | ||
< | <span id="Firefox_Variants"></span> | ||
== Firefox | == Версии Firefox == | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
There are several Firefox variants that you can choose to install. To choose a variant, set <code>programs.firefox.package</code> accordingly. | There are several Firefox variants that you can choose to install. To choose a variant, set <code>programs.firefox.package</code> accordingly. | ||
Line 32: | Line 31: | ||
=== Variant: Nightly === | === Variant: Nightly === | ||
</div> | </div> | ||
Nightly builds - это ежедневные сборки Firefox из центрального репозитория Mozilla. | |||
Nightly builds | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
==== Reproducible ==== | ==== Reproducible ==== | ||
Line 68: | Line 65: | ||
==== Non-reproducible (Impure) ==== | ==== Non-reproducible (Impure) ==== | ||
</div> | </div> | ||
Использование этого метода плохо сказывается на воспроизводимости, так как ресурсы берутся с URL-адресов, не относящихся к привязке, но это также означает, что вы всегда получаете последнюю Nightly версию, когда собираете свою систему. | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
{{tip|1=If you don't want to use flakes but you still want to reproducibly install Firefox nightly, you might want to use this method with [https://github.com/nmattia/niv niv].}} | {{tip|1=If you don't want to use flakes but you still want to reproducibly install Firefox nightly, you might want to use this method with [https://github.com/nmattia/niv niv].}} | ||
Line 137: | Line 132: | ||
}; | }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
< | <span id="FAQ"></span> | ||
== | == ЧАВО == | ||
< | <span id="How_do_I_use_ALSA_with_Firefox_instead_of_PulseAudio?"></span> | ||
=== Как использовать ALSA в Firefox вместо PulseAudio? === | |||
=== | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
programs.firefox.package = (pkgs.wrapFirefox.override { libpulseaudio = pkgs.libpressureaudio; }) pkgs.firefox-unwrapped { }; | programs.firefox.package = (pkgs.wrapFirefox.override { libpulseaudio = pkgs.libpressureaudio; }) pkgs.firefox-unwrapped { }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
< | <span id="Tips"></span> | ||
== | == Советы == | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
=== Enabling | === Enabling | ||
Line 189: | Line 181: | ||
}; | }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
< | <span id="Troubleshooting"></span> | ||
== | == Устранение неполадок == | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
=== If you can't start the browser because of a configuration error === | === If you can't start the browser because of a configuration error === | ||
</div> | </div> | ||
Например: | |||
<syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
firefox | firefox | ||
Line 209: | Line 198: | ||
An easy way to get away from this is to start firefox with the <code>firefox -safe-mode</code> command. Then you can troubleshoot your actual problem or you can call your luck by calling the refresh option (a special button will appear when firefox starts in this mode). This will reset your configuration to a sane state and you will be usually able to start the browser again, but you will lose most of your customization. | An easy way to get away from this is to start firefox with the <code>firefox -safe-mode</code> command. Then you can troubleshoot your actual problem or you can call your luck by calling the refresh option (a special button will appear when firefox starts in this mode). This will reset your configuration to a sane state and you will be usually able to start the browser again, but you will lose most of your customization. | ||
</div> | </div> | ||
< | <span id="nativeMessagingHosts_doesn't_work"></span> | ||
=== <code>nativeMessagingHosts</code> | === <code>nativeMessagingHosts</code> не работает === | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
Such as <code>enablePlasmaBrowserIntegration</code>, <code>enableGnomeExtensions</code>, and <code>enableBrowserpass</code>. | Such as <code>enablePlasmaBrowserIntegration</code>, <code>enableGnomeExtensions</code>, and <code>enableBrowserpass</code>. | ||
Line 221: | Line 209: | ||
<hr /> | <hr /> | ||
<references /> | <references /> | ||
< | <span id="Screen_Sharing_under_Wayland"></span> | ||
=== | === Поделиться Экраном через Wayland === | ||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
When using Firefox with Wayland, screen sharing options might be limited and require additional configuration (exact capabilities vary with different compositors). | When using Firefox with Wayland, screen sharing options might be limited and require additional configuration (exact capabilities vary with different compositors). | ||
</div> | </div> | ||
* Добавить поддержку Pipewire в Firefox: | |||
<syntaxhighlight lang="nix"> | |||
# только если programs.firefox.enable == true | |||
programs.firefox.wrapperConfig = { | |||
pipewireSupport = true; | |||
}; | |||
# или же | |||
<div lang="en" dir="ltr" class="mw-content-ltr"> | <div lang="en" dir="ltr" class="mw-content-ltr"> | ||
environment.systemPackages = [ | environment.systemPackages = [ | ||
# Replace this | # Replace this |