Replace shell aliases with justfile recipes for managing nix commands

This commit is contained in:
SebastianStork 2024-07-15 17:28:58 +02:00
parent 8d8c006e99
commit ad7ae417b9
4 changed files with 30 additions and 13 deletions

View file

@ -6,8 +6,11 @@
formatter =
(inputs.treefmt-nix.lib.evalModule pkgs {
projectRootFile = "flake.nix";
programs.nixfmt.enable = true;
programs.prettier.enable = true;
programs = {
nixfmt.enable = true;
prettier.enable = true;
just.enable = true;
};
}).config.build.wrapper;
};
}