summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-09-22 23:33:16 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-09-22 23:33:16 -0500
commit94bec239d56a0184629ce0cb95e4f6efcc835772 (patch)
tree622828b75a684ec58bc9680ebcc461839f538b02 /nixos
parentbd13ef5944a01f02006bcd4caafaaeba6a52d323 (diff)
downloadnixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.tar
nixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.tar.gz
nixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.tar.bz2
nixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.tar.lz
nixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.tar.xz
nixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.tar.zst
nixlib-94bec239d56a0184629ce0cb95e4f6efcc835772.zip
nixos: make firefox default browser
Without this the graphical installer has no way to open the manual.
You can fix it yourself by installing any HTML browser but this might
be unfamiliar to users new to NixOS and without any other way to open
the manual. The downside is it will also increase download sizes.

Fixes #46537
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/profiles/graphical.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/profiles/graphical.nix b/nixos/modules/profiles/graphical.nix
index 332cf58aa538..1a8372ddc43c 100644
--- a/nixos/modules/profiles/graphical.nix
+++ b/nixos/modules/profiles/graphical.nix
@@ -11,5 +11,5 @@
     libinput.enable = true; # for touchpad support on many laptops
   };
 
-  environment.systemPackages = [ pkgs.glxinfo ];
+  environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];
 }