nixos-config/home/browsers/default.nix
Felix Schröter 0bf8a6b336
feat(browsers): add mullvad-browser
Adds Mullvad Browser & sets it as the new default browser.
2023-04-12 21:06:32 +02:00

8 lines
153 B
Nix

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