VSCode test

This commit is contained in:
Filippo Berto 2024-10-28 15:51:10 +01:00
parent 58287458a0
commit 1810f60f31
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
2 changed files with 10 additions and 0 deletions

9
modules/hm/vscode.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
coder.coder-remote
rust-lang.rust-analyzer
];
};
}