mio-ops/shell.nix

15 lines
327 B
Nix
Raw Normal View History

2023-07-20 03:48:15 +00:00
{
pkgs ? import <nixpkgs> {},
mkShell,
nix,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
nix # Powerful package manager, makes packaging reliable & reproducible
tea # Gitea official CLI client
treefmt # one CLI to format the code tree
];
}