feat(browsers): add mullvad-browser

Adds Mullvad Browser & sets it as the new default browser.
This commit is contained in:
Felix Schröter 2023-04-12 20:59:05 +02:00
parent 2cf6ced7f3
commit 0bf8a6b336
Signed by: felschr
GPG key ID: 671E39E6744C807D
8 changed files with 764 additions and 11 deletions

View file

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./firefox.nix ./tor-browser.nix ];
imports = [ ./mullvad-browser.nix ./tor-browser.nix ./firefox.nix ];
home.sessionVariables.BROWSER = "firefox";
home.sessionVariables.BROWSER = "mullvad-browser";
}