1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-22 22:48:31 +02:00

vscode: don't create an empty settings.json

If I enable this module without using the userSettings option it will
create an empty settings.json. We use mkIf to prevent this on the default
value.
This commit is contained in:
worldofpeace 2019-11-28 16:01:58 -05:00
parent 34dc4a5e03
commit ef11164c0c

View File

@ -85,7 +85,10 @@ in
foldr
(a: b: a // b)
{
"${configFilePath}".text = builtins.toJSON cfg.userSettings;
"${configFilePath}" =
mkIf (cfg.userSettings != {}) {
text = builtins.toJSON cfg.userSettings;
};
}
toSymlink;
};