From 84f0d90de1a71deca4f9584c3e36e728141130cf Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 24 Sep 2024 13:13:41 +0100 Subject: [PATCH] Don't autostart twinkle or teams --- system/home/work.nix | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/system/home/work.nix b/system/home/work.nix index 23fcad24..6fb941ce 100644 --- a/system/home/work.nix +++ b/system/home/work.nix @@ -16,16 +16,12 @@ proton.primary = lib.mkForce false; outlook.primary = lib.mkForce true; }; - xdg.configFile = { - "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"; - "teams-for-linux/config.json".text = builtins.toJSON { - awayOnSystemIdle = true; - closeAppOnCross = false; - followSystemTheme = true; - notificationMethod = "electron"; - optInTeamsV2 = true; - spellCheckerLanguages = [ "en_GB" ]; - }; + xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON { + awayOnSystemIdle = true; + closeAppOnCross = false; + followSystemTheme = true; + notificationMethod = "electron"; + optInTeamsV2 = true; + spellCheckerLanguages = [ "en_GB" ]; }; }