Compare commits

...

2 commits

Author SHA1 Message Date
♥ Minnie ♥ d77f2169fd
install editors 2024-12-23 08:54:40 +08:00
♥ Minnie ♥ 7b29515662
bump inputs 2024-12-23 08:54:02 +08:00
3 changed files with 31 additions and 4 deletions

View file

@ -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"
},

View file

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

View 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"
])
];
}