reciproka-ops/shell.nix
2023-04-24 09:23:42 +10:00

18 lines
407 B
Nix

{
pkgs ? import <nixpkgs> {},
alejandra,
mkShell,
colmena,
nix,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
colmena # simple, stateless NixOS deployment tool
nix # Powerful package manager, makes packaging reliable & reproducible
tea # Gitea official CLI client
treefmt # one CLI to format the code tree
];
}