summaryrefslogtreecommitdiff
path: root/education
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2023-09-17 18:40:48 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2023-09-17 18:40:48 +0200
commiteebffc190776afdb92ef959270c4863bf21a3cf8 (patch)
tree68c7bd8fa25b9044213b67c34adba822445c65f2 /education
parent7f5f01ef3d3eb56a24db31b7ddf85fc4ce3b37fc (diff)
reformat code
Diffstat (limited to 'education')
-rw-r--r--education/2016-09_llg.nix4
-rw-r--r--education/2018-09_ens/2018-09_l3.nix7
-rw-r--r--education/2018-09_ens/2019-09_m1.nix4
-rw-r--r--education/2018-09_ens/2021-09_m2.nix7
-rw-r--r--education/2018-09_ens/default.nix9
-rw-r--r--education/default.nix5
6 files changed, 11 insertions, 25 deletions
diff --git a/education/2016-09_llg.nix b/education/2016-09_llg.nix
index 3ec5e41..195f927 100644
--- a/education/2016-09_llg.nix
+++ b/education/2016-09_llg.nix
@@ -1,6 +1,4 @@
-{ href, ... }:
-
-{
+{...}: {
date = {
start = {
year = 2016;
diff --git a/education/2018-09_ens/2018-09_l3.nix b/education/2018-09_ens/2018-09_l3.nix
index d02c9e3..aba9e82 100644
--- a/education/2018-09_ens/2018-09_l3.nix
+++ b/education/2018-09_ens/2018-09_l3.nix
@@ -1,6 +1,4 @@
-{ ... }:
-
-{
+{...}: {
date = {
start = {
year = 2018;
@@ -39,6 +37,5 @@
"Information Theory"
];
};
- description =
- "Graduated with highest honors in Computer Science (17.80/20), with honors in Mathematics (14.74/20).";
+ description = "Graduated with highest honors in Computer Science (17.80/20), with honors in Mathematics (14.74/20).";
}
diff --git a/education/2018-09_ens/2019-09_m1.nix b/education/2018-09_ens/2019-09_m1.nix
index 40ca4d1..9c85316 100644
--- a/education/2018-09_ens/2019-09_m1.nix
+++ b/education/2018-09_ens/2019-09_m1.nix
@@ -1,6 +1,4 @@
-{ ... }:
-
-{
+{...}: {
date = {
start = {
year = 2019;
diff --git a/education/2018-09_ens/2021-09_m2.nix b/education/2018-09_ens/2021-09_m2.nix
index 02ebc0b..a60e3e4 100644
--- a/education/2018-09_ens/2021-09_m2.nix
+++ b/education/2018-09_ens/2021-09_m2.nix
@@ -1,6 +1,4 @@
-{ ... }:
-
-{
+{...}: {
date = {
start = {
year = 2021;
@@ -39,6 +37,5 @@
"Probabilistic Programming"
];
};
- description =
- "Graduated with highest honors (18.43/20), second of a highly-selective class of 70 students.";
+ description = "Graduated with highest honors (18.43/20), second of a highly-selective class of 70 students.";
}
diff --git a/education/2018-09_ens/default.nix b/education/2018-09_ens/default.nix
index 4adeee8..426b8e7 100644
--- a/education/2018-09_ens/default.nix
+++ b/education/2018-09_ens/default.nix
@@ -1,6 +1,4 @@
-{ make, ... }:
-
-{
+{make, ...}: {
date = {
start = {
year = 2018;
@@ -19,11 +17,10 @@
location = "Paris, France";
};
studyType = "Master's degree in Theoretical Computer Science";
- years = builtins.map (path: make path { }) [
+ years = builtins.map (path: make path {}) [
./2018-09_l3.nix
./2019-09_m1.nix
./2021-09_m2.nix
];
- description =
- "Took two gap years: one to follow additional postgraduate courses in Mathematics; one to do additional internships.";
+ description = "Took two gap years: one to follow additional postgraduate courses in Mathematics; one to do additional internships.";
}
diff --git a/education/default.nix b/education/default.nix
index ffe5dd9..f8489d2 100644
--- a/education/default.nix
+++ b/education/default.nix
@@ -1,3 +1,2 @@
-{ make, ... }:
-
-builtins.map (path: make path { }) [ ./2016-09_llg.nix ./2018-09_ens ]
+{make, ...}:
+builtins.map (path: make path {}) [./2016-09_llg.nix ./2018-09_ens]