diff options
author | Adrian Kummerlaender | 2019-02-22 13:14:08 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-02-22 13:14:13 +0100 |
commit | 0b2cde8591776d58333b07062748606d91a9f1db (patch) | |
tree | afe3d00096f4bd3e0bc7c5ddbb8456e332af9049 | |
parent | aa119896557a42afde65b83f614b31af0d5948a0 (diff) | |
download | nixos_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
-rw-r--r-- | gui/tasker.nix | 12 |
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; }; |