aboutsummaryrefslogtreecommitdiff
path: root/tasks/default.nix
blob: e851c24620c46043654e5e340b6949dd1410070e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ pkgs ? import <nixpkgs> { }, ... }:

{
  custom.tasks = {
    bsc_edit = {
      description = "Grid refinement BSc thesis editor";
      directory = "~/university/documents/bachelor/arbeit";
      command = "nix-shell --run 'nvim-qt --no-ext-tabline'";
    };
    bsc_shell = {
      description = "Grid refinement BSc thesis shell";
      type = "terminal";
      directory = "~/university/documents/bachelor/arbeit";
      command = "nix-shell --command fish";
    };
    bsc_view = {
      description = "Grid refinement BSc thesis PDF";
      directory = "~/university/documents/bachelor/arbeit";
      command = "evince build/main.pdf";
    };
    olb_edit = {
      description = "OpenLB editor";
      directory = "~/projects/contrib/openlb";
      command = "nix-shell --run 'nvim-qt --no-ext-tabline'";
    };
    olb_shell = {
      description = "OpenLB shell";
      type = "terminal";
      directory = "~/projects/contrib/openlb";
      command = "nix-shell --command fish";
    };
  };
}