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

11 lines
203 B
Nix
Raw Normal View History

2022-01-30 20:32:15 +01:00
{ pkgs, ... }: {
nixpkgs.overlays = [
(import ./tweakSources.nix)
2022-03-10 20:59:18 +01:00
(import ./myPackages.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-02-20 20:16:17 +01:00
# (import ./edopro)
2022-01-30 20:32:15 +01:00
];
}