Firefox/en: Difference between revisions

FuzzyBot (talk | contribs)
Updating to match new version of source page
Tags: Mobile edit Mobile web edit
 
FuzzyBot (talk | contribs)
Updating to match new version of source page
 
(One intermediate revision by the same user not shown)
Line 143: Line 143:
* add Pipewire support to Firefox:
* add Pipewire support to Firefox:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
# when programs.firefox.enable == true
programs.firefox.wrapperConfig = {
  pipewireSupport = true;
};
# or, alternatively
environment.systemPackages = [
environment.systemPackages = [
   # Replace this
   # Replace this
Line 182: Line 189:
</syntaxhighlight>
</syntaxhighlight>
* Ensure that the environment variables are correctly set for the user systemd units, e.g.
* Ensure that the environment variables are correctly set for the user systemd units, e.g.
<syntaxhighlight lang="bash">
# Sway users might achieve this by adding the following to their Sway config file
# Sway users might achieve this by adding the following to their Sway config file
# This ensures all user units started after the command (not those already running) set the variables
# This ensures all user units started after the command (not those already running) set the variables
<syntaxhighlight lang="bash">
exec systemctl --user import-environment
exec systemctl --user import-environment
</syntaxhighlight>
</syntaxhighlight>