aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-02-22 13:14:08 +0100
committerAdrian Kummerlaender2019-02-22 13:14:13 +0100
commit0b2cde8591776d58333b07062748606d91a9f1db (patch)
treeafe3d00096f4bd3e0bc7c5ddbb8456e332af9049 /gui
parentaa119896557a42afde65b83f614b31af0d5948a0 (diff)
downloadnixos_home-0b2cde8591776d58333b07062748606d91a9f1db.tar
nixos_home-0b2cde8591776d58333b07062748606d91a9f1db.tar.gz
nixos_home-0b2cde8591776d58333b07062748606d91a9f1db.tar.bz2
nixos_home-0b2cde8591776d58333b07062748606d91a9f1db.tar.lz
nixos_home-0b2cde8591776d58333b07062748606d91a9f1db.tar.xz
nixos_home-0b2cde8591776d58333b07062748606d91a9f1db.tar.zst
nixos_home-0b2cde8591776d58333b07062748606d91a9f1db.zip
Add further tasks
Diffstat (limited to 'gui')
-rw-r--r--gui/tasker.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/tasker.nix b/gui/tasker.nix
index 43a40df..e7092ba 100644
--- a/gui/tasker.nix
+++ b/gui/tasker.nix
@@ -20,6 +20,18 @@ let
terminal = false;
command = "evince build/main.pdf";
};
+ "olb_edit" = {
+ description = "OpenLB editor";
+ directory = "~/projects/contrib/openlb";
+ terminal = false;
+ command = "nix-shell --run 'nvim-qt --no-ext-tabline'";
+ };
+ "olb_shell" = {
+ description = "OpenLB shell";
+ directory = "~/projects/contrib/openlb";
+ terminal = true;
+ command = "nix-shell --command fish";
+ };
};
in {
home.packages = pkgs.callPackage ./pkgs/tasker.nix { inherit pkgs; inherit tasks; };