From 4ea345211ec19f1fd4d4cc7c966f2e105628bd8e Mon Sep 17 00:00:00 2001 From: Ujp8LfXBJ6wCPR Date: Wed, 17 Jan 2024 14:11:23 +0100 Subject: [PATCH] Make VSCode settings strings (#218) Fixes settings being greyed out by code when you view settings.json --- modules/vscode/hm.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/vscode/hm.nix b/modules/vscode/hm.nix index e08ae121..82954609 100644 --- a/modules/vscode/hm.nix +++ b/modules/vscode/hm.nix @@ -26,9 +26,9 @@ in { programs.vscode = { extensions = [ themeExtension ]; userSettings = { - workbench.colorTheme = "Stylix"; - terminal.integrated.fontFamily = "'${monospace.name}'"; - editor.fontFamily = "'${monospace.name}'"; + "workbench.colorTheme" = "Stylix"; + "terminal.integrated.fontFamily" = "'${monospace.name}'"; + "editor.fontFamily" = "'${monospace.name}'"; }; }; };