Don't autostart twinkle or teams

This commit is contained in:
Evie Litherland-Smith 2024-09-24 13:13:41 +01:00
parent 6ee132ac99
commit 84f0d90de1

View file

@ -16,16 +16,12 @@
proton.primary = lib.mkForce false; proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true; outlook.primary = lib.mkForce true;
}; };
xdg.configFile = { xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
"autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop"; awayOnSystemIdle = true;
"autostart/teams-for-linux.desktop".source = "${pkgs.teams-for-linux}/share/applications/teams-for-linux.desktop"; closeAppOnCross = false;
"teams-for-linux/config.json".text = builtins.toJSON { followSystemTheme = true;
awayOnSystemIdle = true; notificationMethod = "electron";
closeAppOnCross = false; optInTeamsV2 = true;
followSystemTheme = true; spellCheckerLanguages = [ "en_GB" ];
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = [ "en_GB" ];
};
}; };
} }