Compare commits
2 commits
7b39a14dca
...
d77f2169fd
Author | SHA1 | Date | |
---|---|---|---|
♥ Minnie ♥ | d77f2169fd | ||
♥ Minnie ♥ | 7b29515662 |
|
@ -729,11 +729,11 @@
|
|||
"nixvim": "nixvim_2"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1734856146,
|
||||
"narHash": "sha256-oXK7b6ygXaQokpPZZhVrAkUrO2AKzmI/s1d7mqoI+ig=",
|
||||
"lastModified": 1734913956,
|
||||
"narHash": "sha256-QRV1O8EDCb3UlSuREG2Bfk11CCRJ0CU3vodVx/WXM1A=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "2f48251e914cde10985fdd551c3bdcc85e960c79",
|
||||
"revCount": 26,
|
||||
"rev": "875cd4cefa2e814fcda527de3864041ef65c08a4",
|
||||
"revCount": 28,
|
||||
"type": "git",
|
||||
"url": "https://git.sajenim.dev/jasmine/nvim.nix.git"
|
||||
},
|
||||
|
|
|
@ -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.unstable.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