install editors

This commit is contained in:
♥ Minnie ♥ 2024-12-23 08:54:40 +08:00
parent 7b29515662
commit daf979924d
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 27 additions and 0 deletions

View file

@ -6,6 +6,7 @@
imports = [ imports = [
./discord ./discord
./dunst ./dunst
./editors
./irc ./irc
./mpd ./mpd
./picom ./picom

View file

@ -0,0 +1,26 @@
{pkgs, ...}: {
# Enable Visual Studio Code (VSCode) program
programs.vscode = {
enable = true;
extensions = with pkgs.vscode-extensions; [
sainnhe.gruvbox-material # Gruvbox Material theme
];
};
# List of packages to be installed as part of the home configuration
home.packages = [
pkgs.gcc # GCC compiler
pkgs.python39 # Python 3.9 interpreter
# Jetbrains IDE's with GitHub Copilot plugin enabled
(pkgs.jetbrains.plugins.addPlugins pkgs.jetbrains.clion [
"github-copilot"
])
(pkgs.jetbrains.plugins.addPlugins pkgs.jetbrains.idea-ultimate [
"github-copilot"
])
(pkgs.jetbrains.plugins.addPlugins pkgs.jetbrains.pycharm-professional [
"github-copilot"
])
];
}