aboutsummaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorAdrian Kummerlaender2020-07-03 10:20:22 +0200
committerAdrian Kummerlaender2020-07-03 10:20:22 +0200
commit63155a37f0bbd7d08a4acf0097f1e59a4f566eee (patch)
tree17112f586e2916658381b06f5cbf1e4d70caae88 /tasks
parent6e30d962b5277b984abfec03232043febbfdff2e (diff)
downloadnixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.tar
nixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.tar.gz
nixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.tar.bz2
nixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.tar.lz
nixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.tar.xz
nixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.tar.zst
nixos_home-63155a37f0bbd7d08a4acf0097f1e59a4f566eee.zip
Deprecate tasks that do not fit my workflow anymore
Diffstat (limited to 'tasks')
-rw-r--r--tasks/default.nix63
1 files changed, 1 insertions, 62 deletions
diff --git a/tasks/default.nix b/tasks/default.nix
index b3c0a1a..23be945 100644
--- a/tasks/default.nix
+++ b/tasks/default.nix
@@ -38,79 +38,18 @@ let
in {
custom.tasks = {
- bsc_edit = {
- description = "Grid refinement BSc thesis editor";
- directory = "~/university/documents/bachelor/arbeit";
- type = "local-editor";
- };
-
- bsc_shell = {
- description = "Grid refinement BSc thesis shell";
- directory = "~/university/documents/bachelor/arbeit";
- type = "local-shell";
- };
-
- 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";
- type = "local-editor";
- };
-
- olb_shell = {
- description = "OpenLB shell";
- directory = "~/projects/contrib/openlb";
- type = "local-shell";
- };
-
- study_edit = {
- description = "University notes editor";
- directory = "~/university/note";
- type = "local-editor";
- };
-
- study_shell = {
- description = "University notes shell";
- directory = "~/university/note";
- type = "local-shell";
- };
-
cpp_shell = {
description = "Generic C++ shell environment";
directory = "~/";
type = "environment";
environment = mkShellDerivation "cpp-env" (with pkgs; [
cmake
- gcc8
+ gcc10
gdb cgdb
universal-ctags
]);
};
- pymath_shell = {
- description = "Python console for mathematics";
- directory = "~/";
- type = "python-console";
- environment = mkPythonShellDerivation "pymath-env" (with pkgs.python3Packages; [
- sympy
- numpy
- matplotlib
- ])
- ''
- import numpy as np
- import sympy
- import matplotlib
- import matplotlib.pyplot as plt
-
- sympy.init_session()
- '';
- };
-
pymath_jupyter = {
description = "Python for mathematics @ Jupyter Lab";
directory = "~/";