Files
flake/modules/develop.nix
T
2024-06-23 17:53:14 +08:00

19 lines
342 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
clang-tools
python312
python312Packages.ipython
];
programs.fish.shellAliases = {
"ipy" = "ipython --no-confirm-exit";
};
programs.direnv.enable = true;
programs.fish.shellInit = ''
direnv hook fish | source
'';
programs.vscode.enable = true;
}