mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
d3f21617ac
Update notification popups are annoying when vscode/vscodium is managed by Home Manager. However, as these settings also require the configuration to be managed via `userSettings`, they are disabled by default.
29 lines
684 B
Nix
29 lines
684 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
|
|
settingsPath = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
"Library/Application Support/Code/User/settings.json"
|
|
else
|
|
".config/Code/User/settings.json";
|
|
|
|
expectedSettings = pkgs.writeText "settings-expected.json" ''
|
|
{
|
|
"extensions.autoCheckUpdates": false,
|
|
"update.mode": "none"
|
|
}
|
|
'';
|
|
|
|
in {
|
|
programs.vscode = {
|
|
enable = true;
|
|
package = pkgs.writeScriptBin "vscode" "" // { pname = "vscode"; };
|
|
enableUpdateCheck = false;
|
|
enableExtensionUpdateCheck = false;
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/${settingsPath}"
|
|
assertFileContent "home-files/${settingsPath}" "${expectedSettings}"
|
|
'';
|
|
}
|