From dbb404aebefd63a3197df1ef0bd99eb8d8be019d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 28 Oct 2024 08:08:46 +0000 Subject: [PATCH] Fix typo setting teams config file --- system/home/work.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/system/home/work.nix b/system/home/work.nix index e1b061a1..580584ba 100644 --- a/system/home/work.nix +++ b/system/home/work.nix @@ -18,14 +18,14 @@ 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 configuration - "teams-for-linux/config.json".text = builtins.toJSON { - awayOnSystemIdle = true; - closeAppOnCross = false; - followSystemTheme = true; - notificationMethod = "electron"; - optInTeamsV2 = true; - spellCheckerLanguages = [ "en_GB" ]; + # Teams configuration + "teams-for-linux/config.json".text = builtins.toJSON { + awayOnSystemIdle = true; + closeAppOnCross = false; + followSystemTheme = true; + notificationMethod = "electron"; + optInTeamsV2 = true; + spellCheckerLanguages = [ "en_GB" ]; + }; }; }