summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2022-12-17 18:22:57 +0100
committerQuentin Aristote <quentin@aristote.fr>2022-12-17 18:22:57 +0100
commitc91a58357700a466aee5135767535136c878e009 (patch)
treea7b55168f110a1c9752915a6b111cf3793962786 /default.nix
parentbc83aaf07a793823676d3d94c1d50b10be9b4a57 (diff)
add software
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index f2d9b6c..325cc58 100644
--- a/default.nix
+++ b/default.nix
@@ -2,7 +2,10 @@
let
files = ./files;
- commonArgs = markup // { inherit files make pkgs; inherit (pkgs) lib; };
+ commonArgs = markup // {
+ inherit files make pkgs;
+ inherit (pkgs) lib;
+ };
make = path: overrides:
let f = import path;
in f ((builtins.intersectAttrs (builtins.functionArgs f) commonArgs)
@@ -14,4 +17,5 @@ in {
experience = make ./experience { };
languages = make ./languages { };
education = make ./education { };
+ software = make ./software { };
}