1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 21:17:27 +02:00
home-manager/tests/modules/programs/zed-editor/settings.nix

37 lines
823 B
Nix
Raw Normal View History

# Test custom keymap functionality
{ config, ... }:
{
programs.zed-editor = {
enable = true;
package = config.lib.test.mkStubPackage { };
userSettings = {
theme = "XY-Zed";
features = { copilot = false; };
vim_mode = false;
ui_font_size = 16;
buffer_font_size = 16;
};
};
nmt.script = let
expectedContent = builtins.toFile "expected.json" ''
{
"auto_install_extensions": {},
"buffer_font_size": 16,
"features": {
"copilot": false
},
"theme": "XY-Zed",
"ui_font_size": 16,
"vim_mode": false
}
'';
settingsPath = ".config/zed/settings.json";
in ''
assertFileExists "home-files/${settingsPath}"
assertFileContent "home-files/${settingsPath}" "${expectedContent}"
'';
}