aboutsummaryrefslogtreecommitdiffstats
path: root/hm/grades
diff options
context:
space:
mode:
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];
-}