Add just and justfile
This commit is contained in:
parent
4b931208b6
commit
3ff6d210f0
2 changed files with 16 additions and 1 deletions
|
|
@ -18,7 +18,9 @@
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
buildInputs = [];
|
buildInputs = with pkgs; [
|
||||||
|
just
|
||||||
|
];
|
||||||
shellHook = "";
|
shellHook = "";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
13
justfile
Normal file
13
justfile
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
# The default command to run when ran with just 'just'
|
||||||
|
[group('General')]
|
||||||
|
default: help
|
||||||
|
|
||||||
|
# Print the available commands
|
||||||
|
[group('General')]
|
||||||
|
help:
|
||||||
|
@just --list
|
||||||
|
|
||||||
|
# Update project dependencies
|
||||||
|
[group('General')]
|
||||||
|
update:
|
||||||
|
nix flake update
|
||||||
Loading…
Add table
Add a link
Reference in a new issue