summary refs log tree commit diff stats
path: root/hm/grades
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-04-21 16:59:46 +0200
committerSilas Schöffel <sils@sils.li>2024-04-21 17:01:51 +0200
commit76c67b975ce8924c14dd82d448abaff95c1a5bda (patch)
tree39290c567266a9f734d4f6bbe73be2f7456681ad /hm/grades
parentsils: make networking toggleable (diff)
downloadnix-config-76c67b975ce8924c14dd82d448abaff95c1a5bda.tar.gz
nix-config-76c67b975ce8924c14dd82d448abaff95c1a5bda.zip
treewide: remove all traces of intellectual property of others
Diffstat (limited to 'hm/grades')
-rw-r--r--hm/grades/config.yaml57
-rw-r--r--hm/grades/default.nix9
2 files changed, 0 insertions, 66 deletions
diff --git a/hm/grades/config.yaml b/hm/grades/config.yaml
deleted file mode 100644
index d80516a..0000000
--- a/hm/grades/config.yaml
+++ /dev/null
@@ -1,57 +0,0 @@
-# für oberstufe
----
-unit: Punkte
-grade_groups:
-  - name: Zeugnis
-    weight: '100'
-  - name: Sonstige
-    weight: '1'
-  - name: Klausur
-    weight: '1'
-
-grade_types:
-  - name: Zeugnis
-    group: Zeugnis
-  - name: Klausur
-    group: Klausur
-  - name: Epo
-    group: Sonstige
-  - name: Test
-    group: Sonstige
-
-class_types:
-  - name: NebenFach
-  - name: LeistungsKurs
-
-classes:
-  - name: M
-    long_name: Mathe
-    class_type: LeistungsKurs
-  - name: EK
-    long_name: Erdkunde
-    class_type: LeistungsKurs
-  - name: PH
-    long_name: Physik
-    class_type: LeistungsKurs
-
-  - name: d
-    long_name: Deutsch
-    class_type: NebenFach
-  - name: g
-    long_name: Geschichte
-    class_type: NebenFach
-  - name: mu
-    long_name: Musik
-    class_type: NebenFach
-  - name: rel
-    long_name: Religion
-    class_type: NebenFach
-  - name: spj
-    long_name: Sport
-    class_type: NebenFach
-  - name: inf
-    long_name: Informatik
-    class_type: NebenFach
-  - name: e
-    long_name: Englisch
-    class_type: NebenFach
diff --git a/hm/grades/default.nix b/hm/grades/default.nix
deleted file mode 100644
index 64af8a6..0000000
--- a/hm/grades/default.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{
-  config,
-  grades,
-  ...
-}: {
-  xdg.configFile."grades/config.yaml".source = ./config.yaml;
-
-  home.packages = [grades];
-}