1
0
Fork 0
myflake/pkgs/default.nix

9 lines
165 B
Nix
Raw Normal View History

2024-04-11 17:15:11 +02:00
{ lib, pkgs, ... }:
2024-04-12 15:22:07 +02:00
let
sources = [
(import ./go { inherit lib pkgs; })
(import ./node { inherit lib pkgs; })
];
in
lib.foldl (a: b: a // b) {} sources