From 4bda7bcd1eb2410ff7466fd4da2b5345ece6763f Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 22 Feb 2019 20:34:18 +0100 Subject: Declare tasks as attribute option This way it is easy to support e.g. host specific tasks --- tasks/default.nix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tasks/default.nix (limited to 'tasks') diff --git a/tasks/default.nix b/tasks/default.nix new file mode 100644 index 0000000..9fbee61 --- /dev/null +++ b/tasks/default.nix @@ -0,0 +1,36 @@ +{ ... }: + +{ + custom.tasks = { + "bsc_edit" = { + description = "Grid refinement BSc thesis editor"; + directory = "~/university/documents/bachelor/arbeit"; + terminal = false; + command = "nix-shell --run 'nvim-qt --no-ext-tabline'"; + }; + "bsc_shell" = { + description = "Grid refinement BSc thesis shell"; + directory = "~/university/documents/bachelor/arbeit"; + terminal = true; + command = "nix-shell --command fish"; + }; + "bsc_view" = { + description = "Grid refinement BSc thesis PDF"; + directory = "~/university/documents/bachelor/arbeit"; + 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"; + }; + }; +} -- cgit v1.2.3