about summary refs log tree commit diff stats
path: root/home-manger/grades
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-11 12:22:46 +0100
committerene <ene@sils.li>2023-02-11 12:22:46 +0100
commit16b74bfaab48fa8e890881eead078b09dcefbcf8 (patch)
tree48dbe0f014d22246cc6594db655866929e5d3cde /home-manger/grades
parentFix: Import the configurations (diff)
downloadnixos-config-16b74bfaab48fa8e890881eead078b09dcefbcf8.tar.gz
nixos-config-16b74bfaab48fa8e890881eead078b09dcefbcf8.zip
Fix: Remove typo from home-manager directory name
Diffstat (limited to 'home-manger/grades')
-rw-r--r--home-manger/grades/config.yaml59
-rw-r--r--home-manger/grades/default.nix7
2 files changed, 0 insertions, 66 deletions
diff --git a/home-manger/grades/config.yaml b/home-manger/grades/config.yaml
deleted file mode 100644
index ebbc61f8..00000000
--- a/home-manger/grades/config.yaml
+++ /dev/null
@@ -1,59 +0,0 @@
----
-# The unit of your grades.
-# This can also be specified
-# on a per grade basis on the command line
-unit: Punkte
-
-# List of the possible grade groups
-#
-# name:
-# This is the name used below
-#
-# weight:
-# This is the weight applied to all grades form the group
-# when calculation the average (see https://en.wikipedia.org//wiki/Weighted_arithmetic_mean for a explanation).
-grade_groups:
-  - name: major
-    weight: '2'
-  - name: minor
-    weight: '1'
-
-# List of the types of grades.
-#
-# name:
-# This is the name used on the command line.
-# NB: The name is case sensitive.
-#
-# group:
-# This is used when calculating the average, to group multiple types together.
-# You might want to use separate types to keep grades ordered,
-# but calculate their average as one.
-# The value is one of the names you declared in the grade_group section.
-grade_types:
-  - name: graded-homework
-    group: minor
-  - name: exam
-    group: major
-  - name: oral-mark
-    group: minor
-
-# List of the types of Classes
-#
-# name:
-# The name used below
-class_types:
-  - name: subsidiary-subject
-  - name: intensified-course
-
-# List of classes
-#
-# name:
-# The name used on the cli
-#
-# class_type:
-# The name of the class type you declared above
-classes:
-  - name: Math
-    class_type: intensified-course2
-  - name: English
-    class_type: subsidiary-subject
diff --git a/home-manger/grades/default.nix b/home-manger/grades/default.nix
deleted file mode 100644
index 8cca9640..00000000
--- a/home-manger/grades/default.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{config, ...}: {
-  home-manager.xdg.configFile."grades/config.yaml" = {
-    enable = true;
-    target = "grades/config.yaml";
-    source = "./config.yaml";
-  };
-}