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" ]; - }; - }; }; }