aboutsummaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2021-08-24 00:29:45 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2021-09-30 00:39:55 +0200
commit660cb973260f62551294f73e0811b37fc10fd467 (patch)
tree7785e96caabb8024016620777fdf5d39467e1ab1 /overlays
parent1c732acd070287818ce05acbb86fdf82da9bb763 (diff)
downloadNix-660cb973260f62551294f73e0811b37fc10fd467.tar.gz
Nix-660cb973260f62551294f73e0811b37fc10fd467.tar.zst
Nix-660cb973260f62551294f73e0811b37fc10fd467.zip
Refactor flakes
Third iteration
Diffstat (limited to 'overlays')
-rw-r--r--overlays/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/overlays/default.nix b/overlays/default.nix
index 73c7744..9b0615a 100644
--- a/overlays/default.nix
+++ b/overlays/default.nix
@@ -1,4 +1,13 @@
1{ 1let
2 flakeCompat = import ../lib/flake-compat.nix;
3 flakes = builtins.foldl' (a: b: a // b) {} (map (n: (flakeCompat n).overlays) [
4 ../flakes/libspf2
5 ../flakes/openarc
6 ../flakes/opendmarc
7 ../flakes/peertube
8 ../flakes/private/peertube
9 ]);
10in flakes // {
2 mylibs = self: super: { mylibs = import ../lib { pkgs = self; }; }; 11 mylibs = self: super: { mylibs = import ../lib { pkgs = self; }; };
3 mypkgs = self: super: import ../pkgs { pkgs = self; }; 12 mypkgs = self: super: import ../pkgs { pkgs = self; };
4 13