12 lines
173 B
Nix
12 lines
173 B
Nix
# modules/dev/default.nix
|
|
{
|
|
imports = [
|
|
./docker.nix
|
|
./shell.nix
|
|
./tools.nix
|
|
];
|
|
nixpkgs.overlays = [
|
|
(import ../../overlays/firebase-tools.nix)
|
|
];
|
|
}
|