aboutsummaryrefslogtreecommitdiff
path: root/module
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-07-06 21:06:27 +0200
committerAdrian Kummerlaender2019-07-06 21:06:27 +0200
commit6bae7fc0d898a62607344ae9b25242d4a1ef1413 (patch)
treeab9dd4483d41340c3db907ae7cf405a4c2b621c8 /module
parente8689b8ca91d2d27378b85d11db64c6acfae6916 (diff)
downloadnixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.tar
nixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.tar.gz
nixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.tar.bz2
nixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.tar.lz
nixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.tar.xz
nixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.tar.zst
nixos_home-6bae7fc0d898a62607344ae9b25242d4a1ef1413.zip
Add Python console task type
Diffstat (limited to 'module')
-rw-r--r--module/tasker.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/module/tasker.nix b/module/tasker.nix
index 4f2e0fe..032027b 100644
--- a/module/tasker.nix
+++ b/module/tasker.nix
@@ -27,6 +27,10 @@ let
environment = launchTerminalInDirectory conf.directory ''
nix-shell ${builtins.unsafeDiscardStringContext conf.environment.drvPath} --command fish
'';
+
+ python-console = launchCommandInDirectory "~/" ''
+ nix-shell ${builtins.unsafeDiscardStringContext conf.environment.drvPath} --command jupyter-qtconsole
+ '';
};
};