feat(browsers): add firefox

- add nur
- set firefox as main browser
- move browsers into separate modules
This commit is contained in:
Felix Schröter 2020-08-14 23:41:20 +02:00
parent ed8e9f5914
commit f3fb292dd1
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
11 changed files with 96 additions and 40 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
programs.chromium = {
enable = true;
package = pkgs.chromium.override {
enableVaapi = true; # NVIDIA also requires vdpau backend
commandLineArgs = "--force-dark-mode";
};
};
}