From 0fa170c57ecfa866992327a01ec2153d9bcc2620 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Wed, 27 May 2026 13:24:16 -0400 Subject: [PATCH] Preserve .vscode-shared. The latest vscode is storing data in ~/.vscode-shared that contains the "Open Recent" entries and the settings on which folders are trusted. --- nix/configuration/roles/vscode/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/configuration/roles/vscode/default.nix b/nix/configuration/roles/vscode/default.nix index e6023aa..0194c7c 100644 --- a/nix/configuration/roles/vscode/default.nix +++ b/nix/configuration/roles/vscode/default.nix @@ -121,6 +121,12 @@ in group = "talexander"; mode = "0755"; } + { + directory = ".vscode-shared"; + user = "talexander"; + group = "talexander"; + mode = "0755"; + } ]; }; };