- Remove crate extension because is deprecated and cratesx not exist in nixpkgs - Add C/C++ Support for Linux kernel module development - Best errors
This commit is contained in:
parent
f640cd4ca1
commit
07ed50ca90
2 changed files with 14 additions and 1 deletions
|
@ -6,6 +6,8 @@
|
|||
];
|
||||
|
||||
modules.home = {
|
||||
editors.vscode.enable = true;
|
||||
|
||||
apps = {
|
||||
flatpak.enable = true;
|
||||
jetbrainsToolbox.enable = true;
|
||||
|
|
|
@ -28,12 +28,14 @@ in
|
|||
|
||||
# Waiting https://github.com/nix-community/home-manager/pull/5640 to support multi-profiles support
|
||||
extensions = with pkgs; with vscode-extensions; [
|
||||
# Direnv to automatically Load Dev Env
|
||||
mkhl.direnv
|
||||
|
||||
# Nix
|
||||
bbenoist.nix
|
||||
|
||||
# Rust
|
||||
rust-lang.rust-analyzer
|
||||
serayuzgur.crates
|
||||
tamasfe.even-better-toml
|
||||
|
||||
# Phoenix
|
||||
|
@ -42,6 +44,15 @@ in
|
|||
|
||||
# Ruby
|
||||
shopify.ruby-lsp
|
||||
|
||||
# C/C++ Support
|
||||
ms-vscode.cpptools
|
||||
|
||||
# Improve error display
|
||||
usernamehw.errorlens
|
||||
|
||||
# TS Error
|
||||
yoavbls.pretty-ts-errors
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue