This commit is contained in:
Hao 2024-06-03 14:18:00 +10:00 committed by Sridhar Ratnakumar
parent f3d2ea7814
commit b14afd47d6
2 changed files with 13 additions and 0 deletions

View File

@ -21,11 +21,17 @@
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [
just
nixd
];
inputsFrom = [
config.treefmt.build.devShell
];
shellHook = ''
echo
echo "🍎🍎 Run 'just <recipe>' to get started"
just
'';
};
};
};

7
justfile Normal file
View File

@ -0,0 +1,7 @@
# List all the just commands
default:
@just --list
# Auto-format the project tree
fmt:
treefmt