mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 14:17:58 -05:00
Fix. Everything. Co-authored-by: Andrei Cravtov <the.andrei.cravtov@gmail.com> Co-authored-by: Matt Beton <matthew.beton@gmail.com> Co-authored-by: Alex Cheema <alexcheema123@gmail.com> Co-authored-by: Seth Howes <sethshowes@gmail.com>
27 lines
564 B
Nix
27 lines
564 B
Nix
# Provides pretty banner & command index for this flake
|
|
|
|
{ inputs, ... }:
|
|
{
|
|
imports = [ inputs.just-flake.flakeModule ];
|
|
perSystem =
|
|
{ config, ... }:
|
|
{
|
|
just-flake.features = {
|
|
# treefmt.enable = true;
|
|
# rust.enable = true;
|
|
# convco.enable = true;
|
|
# hello = {
|
|
# enable = true;
|
|
# justfile = ''
|
|
# hello:
|
|
# echo Hello World
|
|
# '';
|
|
# };
|
|
};
|
|
|
|
make-shells.default = {
|
|
inputsFrom = [ config.just-flake.outputs.devShell ];
|
|
};
|
|
};
|
|
}
|