1
0
Fork 0
myflake/pkgs/default.nix

9 lines
152 B
Nix
Raw Normal View History

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