- 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 = {
|
modules.home = {
|
||||||
|
editors.vscode.enable = true;
|
||||||
|
|
||||||
apps = {
|
apps = {
|
||||||
flatpak.enable = true;
|
flatpak.enable = true;
|
||||||
jetbrainsToolbox.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
|
# Waiting https://github.com/nix-community/home-manager/pull/5640 to support multi-profiles support
|
||||||
extensions = with pkgs; with vscode-extensions; [
|
extensions = with pkgs; with vscode-extensions; [
|
||||||
|
# Direnv to automatically Load Dev Env
|
||||||
|
mkhl.direnv
|
||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
bbenoist.nix
|
bbenoist.nix
|
||||||
|
|
||||||
# Rust
|
# Rust
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
serayuzgur.crates
|
|
||||||
tamasfe.even-better-toml
|
tamasfe.even-better-toml
|
||||||
|
|
||||||
# Phoenix
|
# Phoenix
|
||||||
|
@ -42,6 +44,15 @@ in
|
||||||
|
|
||||||
# Ruby
|
# Ruby
|
||||||
shopify.ruby-lsp
|
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