mio-ops/shell.nix

17 lines
402 B
Nix

{
pkgs ? import <nixpkgs> {},
mkShell,
alejandra,
nix,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
nix # Powerful package manager, makes packaging reliable & reproducible
nixops_unstable_minimal # work around for issue #127423
tea # Gitea official CLI client
treefmt # one CLI to format the code tree
];
}