blob: 9fbee61192c5bfc0fc6c22af009685f6a7f6e80a (
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
34
35
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";
};
};
}
|