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