recipes/flake.nix

15 lines
321 B
Nix
Raw Permalink Normal View History

2022-06-08 18:45:11 +03:00
{
description = "Recipes flake";
2022-06-08 18:51:27 +03:00
inputs.recipes_web.url = "path:./web";
2022-06-08 18:45:11 +03:00
outputs = { self, recipes_web }: {
# Utilized by `nix develop`
devShell.x86_64-linux = recipes_web.devShell.x86_64-linux;
# Utilized by `nix develop .#<name>`
devShells.x86_64-linux.web = self.devShell.x86_64-linux;
};
}