Add just and justfile

This commit is contained in:
Luka Korošec 2025-06-19 21:49:51 +02:00
parent 4b931208b6
commit 3ff6d210f0
Signed by: Pizmovc
GPG key ID: 4E1338930C2F3572
2 changed files with 16 additions and 1 deletions

View file

@ -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
View 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