Firefox: Difference between revisions
imported>Artturin |
imported>Artturin revise installation and remove stub tag since the page has been expanded much since 2017 |
||
| Line 1: | Line 1: | ||
[https://www.mozilla.org/firefox Firefox] is a graphical web browser developed by Mozilla. | [https://www.mozilla.org/firefox Firefox] is a graphical web browser developed by Mozilla. | ||
==Installation== | == Installation == | ||
=== | === NixOS === | ||
<syntaxhighlight lang="nix"> | |||
environment.systemPackages = with pkgs; [ firefox ] | |||
</syntaxhighlight> | |||
=== Home Manager === | |||
[[Home Manager]] provides options to manage {{PAGENAME}}. You can find them below the [https://rycee.gitlab.io/home-manager/options.html#opt-programs.firefox.enable the Configuration Option ''programs.firefox.enable'' entry in the Home Manager Manual]. | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
programs.firefox.enable = true; | programs.firefox.enable = true; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
or | |||
<syntaxhighlight lang="nix"> | |||
home.packages = with pkgs; [ firefox ] | |||
</syntaxhighlight> | |||
if you do not need the home-manager options | |||
=== Non-NixOS === | |||
[https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management declarative package management on non-nixos] | |||
==Other Editions== | ==Other Editions== | ||