1
Fork 0
satellite/modules/overlays/default.nix

10 lines
171 B
Nix
Raw Normal View History

2022-01-30 20:32:15 +01:00
{ pkgs, ... }: {
nixpkgs.overlays = [
(import ./tweakSources.nix)
2022-02-01 14:28:29 +01:00
(import ./npm.nix)
2022-01-30 20:32:15 +01:00
2022-02-01 14:28:29 +01:00
# I hope this works (spoiler: it did not)
2022-01-30 20:32:15 +01:00
(import ./edopro)
];
}