Mullvad Browser module works as expected. Firefox & Tor Browser might still have some issues.
12 lines
293 B
Nix
12 lines
293 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let common = import ./common.nix { inherit config lib pkgs; };
|
|
in common.mkModule {
|
|
name = "firefox";
|
|
displayName = "Firefox";
|
|
dataConfigPath = ".mozilla/firefox";
|
|
defaultPackage = pkgs.firefox;
|
|
defaultPackageName = "pkgs.firefox";
|
|
isSecure = false;
|
|
}
|