[home] split develop.nix out of home.nix

This commit is contained in:
2024-06-23 14:40:06 +08:00
parent eec62add8b
commit 2b102a1dc7
2 changed files with 14 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
clang-tools
python312
python312Packages.ipython
];
programs.fish.shellAliases = {
"ipy" = "ipython --no-confirm-exit";
};
programs.vscode.enable = true;
}