mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
71 lines
1.5 KiB
Nix
71 lines
1.5 KiB
Nix
# Test that keybdinings.json is created correctly.
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
bindings = [
|
|
{
|
|
key = "ctrl+c";
|
|
command = "editor.action.clipboardCopyAction";
|
|
when = "textInputFocus && false";
|
|
}
|
|
{
|
|
key = "ctrl+c";
|
|
command = "deleteFile";
|
|
when = "";
|
|
}
|
|
{
|
|
key = "d";
|
|
command = "deleteFile";
|
|
when = "explorerViewletVisible";
|
|
}
|
|
];
|
|
|
|
targetPath = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
"Library/Application Support/Code/User/keybindings.json"
|
|
else
|
|
".config/Code/User/keybindings.json";
|
|
|
|
expectedJson = pkgs.writeText "expected.json" ''
|
|
[
|
|
{
|
|
"command": "editor.action.clipboardCopyAction",
|
|
"key": "ctrl+c",
|
|
"when": "textInputFocus && false"
|
|
},
|
|
{
|
|
"command": "deleteFile",
|
|
"key": "ctrl+c",
|
|
"when": ""
|
|
},
|
|
{
|
|
"command": "deleteFile",
|
|
"key": "d",
|
|
"when": "explorerViewletVisible"
|
|
}
|
|
]
|
|
'';
|
|
in {
|
|
config = {
|
|
programs.vscode = {
|
|
enable = true;
|
|
keybindings = bindings;
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
vscode = pkgs.runCommandLocal "vscode" { pname = "vscode"; } ''
|
|
mkdir -p $out/bin
|
|
touch $out/bin/code
|
|
chmod +x $out/bin/code;
|
|
'';
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists "home-files/${targetPath}"
|
|
assertFileContent "home-files/${targetPath}" "${expectedJson}"
|
|
'';
|
|
};
|
|
}
|