feat(wisdom): add vscode editor module

Add a new module for Visual Studio Code configuration including
default extensions (nix-ide, markdown-all-in-one, prettier) and
nixd/nixfmt settings. Enable vscode on 14900k, t2mbp, and uConsole
hosts with additional extensions.

Also clean up unfree predicate logic in ideapad configuration.
This commit is contained in:
2026-07-17 17:17:14 -03:00
parent 548a438f6a
commit 3d2e74d115
5 changed files with 88 additions and 8 deletions
+9 -1
View File
@@ -1,7 +1,7 @@
{ self, inputs, ... }:
{
flake.nixosModules.t2mbpHome =
{ self, ... }:
{ self, pkgs, ... }:
{
imports = [ self.nixosModules.desktopHomeBase ];
@@ -14,6 +14,14 @@
discord.enable = true;
pokeclicker.enable = true;
};
editors.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
alefragnani.project-manager
johnpapa.vscode-peacock
];
};
};
}
];