mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
(vscode-with-extensions.override {
|
|
vscodeExtensions = with pkgs.vscode-extensions; [
|
|
esbenp.prettier-vscode
|
|
jnoortheen.nix-ide
|
|
ms-azuretools.vscode-docker
|
|
# ms-python.python # currently broken (2023-10-26)
|
|
redhat.vscode-yaml
|
|
shardulm94.trailing-spaces
|
|
];
|
|
})
|
|
];
|
|
|
|
environment.etc."my-settings.sh".text = ''
|
|
mkdir -p ~/.config/Code/User
|
|
ln -sf /etc/vscode-settings.json ~/.config/Code/User/settings.json
|
|
ln -sf /etc/vscode-keybindings.json ~/.config/Code/User/keybindings.json
|
|
'';
|
|
|
|
environment.etc."vscode-keybindings.json".source = ./vscode-keybindings.json;
|
|
environment.etc."vscode-settings.json".text = builtins.toJSON (
|
|
(
|
|
builtins.fromJSON (builtins.readFile ./vscode-settings.json)
|
|
) // {
|
|
# NixOS-specific vscode settings:
|
|
"extensions.autoCheckUpdates" = false;
|
|
"extensions.autoUpdate" = false;
|
|
"terminal.external.linuxExec" = "x-terminal-emulator";
|
|
"terminal.integrated.fontFamily" = "DejaVuSansM Nerd Font";
|
|
"update.mode" = "none";
|
|
}
|
|
);
|
|
}
|