From b5f35b8d3be230217aab6070a3f0c04459696c4a Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 31 Jan 2025 09:00:30 +0000 Subject: [PATCH] Remove teams-for-linux Firefox teams seems to support video calls now --- system/work.nix | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/system/work.nix b/system/work.nix index 00fd866a..b6cb670f 100644 --- a/system/work.nix +++ b/system/work.nix @@ -6,10 +6,7 @@ }: { services.samba.enable = true; - environment.systemPackages = with pkgs; [ - teams-for-linux - twinkle - ]; + environment.systemPackages = with pkgs; [ twinkle ]; home-manager.users.${username} = { config, ... }: { @@ -22,16 +19,5 @@ proton.primary = lib.mkForce false; outlook.primary = lib.mkForce true; }; - xdg.configFile."teams-for-linux/config.json" = { - force = true; - text = builtins.toJSON { - awayOnSystemIdle = true; - closeAppOnCross = false; - followSystemTheme = true; - notificationMethod = "electron"; - optInTeamsV2 = true; - spellCheckerLanguages = [ "en_GB" ]; - }; - }; }; }