summaryrefslogtreecommitdiff
path: root/src.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2025-08-12 15:26:08 +0200
committeraristote <quentin.aristote@irif.fr>2025-08-12 15:52:07 +0200
commitf5c814c49c37637877bc518ba7c565bf3c057a19 (patch)
tree74f34919f580f58f813eb6a12d17e297cb544a02 /src.nix
parent4b819fb2559dc9d5c652077743218c73133b0343 (diff)
rename any last instances of 'publications' to 'research'
Diffstat (limited to 'src.nix')
-rw-r--r--src.nix20
1 files changed, 15 insertions, 5 deletions
diff --git a/src.nix b/src.nix
index 1d533fd..b24b2d4 100644
--- a/src.nix
+++ b/src.nix
@@ -1,7 +1,17 @@
-{lib, ...}: let
+{ lib, ... }:
+let
fs = lib.fileset;
in
- fs.toSource {
- root = ./.;
- fileset = fs.unions [./default.nix ./basics ./education ./experience ./files ./languages ./publications ./software];
- }
+fs.toSource {
+ root = ./.;
+ fileset = fs.unions [
+ ./default.nix
+ ./basics
+ ./education
+ ./experience
+ ./files
+ ./languages
+ ./research
+ ./software
+ ];
+}