make it into a basic bash file

This commit is contained in:
Lillian Violet 2024-10-23 14:35:05 +02:00
parent c85e430229
commit 91a3bab42a

View file

@ -17,7 +17,7 @@
zellij action close-pane zellij action close-pane
''; '';
jupyter = jupyter =
pkgs.writeText "run_jupyter_from_helix.zsh" pkgs.writeText "run_jupyter_from_helix.sh"
'' ''
#! ~/.nix-profile/bin/zsh #! ~/.nix-profile/bin/zsh
function new() { function new() {
@ -214,7 +214,7 @@ in {
home.file = { home.file = {
"jupyter" = { "jupyter" = {
source = "${jupyter}"; source = "${jupyter}";
target = ".config/helix/run_jupyter_from_helix.zsh"; target = ".config/helix/run_jupyter_from_helix.sh";
}; };
}; };
} }