diff options
Diffstat (limited to 'gui')
-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; }; |