diff --git a/roles/desktop_common.nix b/roles/desktop_common.nix index 3bfbcb2..a7ac536 100644 --- a/roles/desktop_common.nix +++ b/roles/desktop_common.nix @@ -18,6 +18,8 @@ # Common Desktop Packages environment.systemPackages = with pkgs; [ + brave # Privacy-oriented browser + google-chrome # A freeware web browser developed by Google chromium elisa # Elisa music player firefoxWrapper # install Firefox with support for plugins @@ -74,11 +76,11 @@ nixpkgs.config = { allowUnfree = true; firefox = { - enableGoogleTalkPlugin = true; - enableAdobeFlash = false; + enableGoogleTalkPlugin = true; # Required for Google Meet + enableAdobeFlash = false; # Disabled because Adobe Flash is just rubbish }; chromium = { - enablePepperFlash = false; # Chromium's non-NSAPI alternative to Adobe Flash + enablePepperFlash = false; # Chromium's non-NSAPI alternative to Adobe Flash }; };