install editors
This commit is contained in:
parent
7b29515662
commit
daf979924d
|
@ -6,6 +6,7 @@
|
|||
imports = [
|
||||
./discord
|
||||
./dunst
|
||||
./editors
|
||||
./irc
|
||||
./mpd
|
||||
./picom
|
||||
|
|
26
home-manager/sajenim/features/desktop/editors/default.nix
Normal file
26
home-manager/sajenim/features/desktop/editors/default.nix
Normal 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"
|
||||
])
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue