wip: add vscode
This commit is contained in:
parent
a6ba6d56af
commit
0c3f0a7c71
3 changed files with 29 additions and 0 deletions
|
|
@ -51,6 +51,7 @@
|
|||
enable = true;
|
||||
cursors.enable = true;
|
||||
cache.enable = true;
|
||||
vscode.enable = false;
|
||||
};
|
||||
|
||||
# This value determines the Home Manager release that your
|
||||
|
|
|
|||
27
home/vscode/default.nix
Normal file
27
home/vscode/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
profiles.default = {
|
||||
enableExtensionUpdateCheck = true;
|
||||
enableMcpIntegration = true;
|
||||
enableUpdateCheck = true;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
];
|
||||
userSettings = {
|
||||
"workbench.colorTheme" = "Catppuccin Alt Mocha";
|
||||
"window.menuBarVisibility" = "compact";
|
||||
"workbench.navigationControl.enabled" = false;
|
||||
"window.commandCenter" = false;
|
||||
"chat.commandCenter.enabled" = false;
|
||||
"workbench.layoutControl.enabled" = false;
|
||||
"window.titleBarStyle" = "native";
|
||||
"editor.minimap.enabled" = false;
|
||||
"chat.mcp.gallery.enabled" = true;
|
||||
|
||||
"editor.semanticHighlighting.enabled" = true;
|
||||
"workbench.iconTheme" = "catppuccin-mocha";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -33,6 +33,7 @@
|
|||
../home/terminal/kitty/default.nix
|
||||
../home/kde/plasma.nix
|
||||
../home/kde/other.nix
|
||||
../home/vscode/default.nix
|
||||
../home/hosts/${config.networking.hostName}.nix
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue