2025-04-12 17:05:38 +02:00
|
|
|
{ pkgs }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# The minimum amount of dependencies in order to run 'just switch-now'
|
|
|
|
default = pkgs.mkShell {
|
|
|
|
packages = with pkgs; [
|
|
|
|
just
|
|
|
|
git
|
|
|
|
git-crypt
|
|
|
|
nh
|
|
|
|
];
|
|
|
|
};
|
2025-04-16 14:15:54 +02:00
|
|
|
# Formatters needed for 'just fmt'
|
|
|
|
format = pkgs.mkShell {
|
|
|
|
packages = with pkgs; [
|
|
|
|
nodePackages.prettier
|
|
|
|
nixfmt-rfc-style
|
|
|
|
treefmt
|
|
|
|
shfmt
|
|
|
|
];
|
|
|
|
};
|
2025-04-12 17:05:38 +02:00
|
|
|
}
|