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