update editors
This commit is contained in:
parent
8ae33e9f76
commit
5c4db636aa
|
@ -6,11 +6,15 @@
|
||||||
# Enable Visual Studio Code (VSCode) program
|
# Enable Visual Studio Code (VSCode) program
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.unstable.vscode;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
sainnhe.gruvbox-material # Gruvbox Material theme
|
sainnhe.gruvbox-material # Gruvbox Material theme
|
||||||
|
github.copilot
|
||||||
|
github.copilot-chat
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"window.menuBarVisibility" = "hidden";
|
"window.menuBarVisibility" = "compact";
|
||||||
|
"window.titleBarStyle" = "custom";
|
||||||
"workbench.colorTheme" = "Gruvbox Material Dark";
|
"workbench.colorTheme" = "Gruvbox Material Dark";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -20,21 +24,17 @@
|
||||||
[
|
[
|
||||||
# Toolchain
|
# Toolchain
|
||||||
gcc
|
gcc
|
||||||
jdk
|
unstable.python313Full # Note: keep this in sync with school.
|
||||||
unstable.python313 # Note: keep this in sync with school.
|
|
||||||
]
|
]
|
||||||
# Install jetbrains IDEs with plugins
|
# Install jetbrains IDEs with plugins
|
||||||
++ (with inputs.nix-jetbrains-plugins.lib."${system}"; [
|
++ (with inputs.nix-jetbrains-plugins.lib."${system}"; [
|
||||||
(buildIdeWithPlugins pkgs.jetbrains "clion" [
|
(buildIdeWithPlugins pkgs.jetbrains "clion" [
|
||||||
"com.github.copilot"
|
|
||||||
"gruvbox-material-dark"
|
"gruvbox-material-dark"
|
||||||
])
|
])
|
||||||
(buildIdeWithPlugins pkgs.jetbrains "idea-ultimate" [
|
(buildIdeWithPlugins pkgs.jetbrains "idea-ultimate" [
|
||||||
"com.github.copilot"
|
|
||||||
"gruvbox-material-dark"
|
"gruvbox-material-dark"
|
||||||
])
|
])
|
||||||
(buildIdeWithPlugins pkgs.jetbrains "pycharm-professional" [
|
(buildIdeWithPlugins pkgs.jetbrains "pycharm-professional" [
|
||||||
"com.github.copilot"
|
|
||||||
"gruvbox-material-dark"
|
"gruvbox-material-dark"
|
||||||
])
|
])
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue