reciproka-ops/shell.nix

18 lines
407 B
Nix
Raw Normal View History

2022-07-18 22:20:05 +00:00
{
pkgs ? import <nixpkgs> {},
alejandra,
mkShell,
2022-07-19 04:05:08 +00:00
colmena,
2022-07-18 22:20:05 +00:00
nix,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
2022-07-19 04:05:08 +00:00
colmena # simple, stateless NixOS deployment tool
nix # Powerful package manager, makes packaging reliable & reproducible
2023-03-28 02:17:47 +00:00
tea # Gitea official CLI client
2022-07-18 22:20:05 +00:00
treefmt # one CLI to format the code tree
];
}