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
This commit is contained in:
Matthew Bauer 2018-09-22 23:33:16 -05:00
parent bd13ef5944
commit 94bec239d5

View File

@ -11,5 +11,5 @@
libinput.enable = true; # for touchpad support on many laptops
};
environment.systemPackages = [ pkgs.glxinfo ];
environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];
}