Fix typo setting teams config file

This commit is contained in:
Evie Litherland-Smith 2024-10-28 08:08:46 +00:00
parent 18616386ab
commit dbb404aebe

View file

@ -18,14 +18,14 @@
xdg.configFile = { xdg.configFile = {
"autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop"; "autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop";
"autostart/teams-for-linux.desktop".source = "${pkgs.teams-for-linux}/share/applications/teams-for-linux.desktop"; "autostart/teams-for-linux.desktop".source = "${pkgs.teams-for-linux}/share/applications/teams-for-linux.desktop";
}; # Teams configuration
# Teams configuration "teams-for-linux/config.json".text = builtins.toJSON {
"teams-for-linux/config.json".text = builtins.toJSON { awayOnSystemIdle = true;
awayOnSystemIdle = true; closeAppOnCross = false;
closeAppOnCross = false; followSystemTheme = true;
followSystemTheme = true; notificationMethod = "electron";
notificationMethod = "electron"; optInTeamsV2 = true;
optInTeamsV2 = true; spellCheckerLanguages = [ "en_GB" ];
spellCheckerLanguages = [ "en_GB" ]; };
}; };
} }