1
Fork 0
satellite/modules/overlays/default.nix
2022-02-01 15:28:29 +02:00

10 lines
171 B
Nix

{ pkgs, ... }: {
nixpkgs.overlays = [
(import ./tweakSources.nix)
(import ./npm.nix)
# I hope this works (spoiler: it did not)
(import ./edopro)
];
}