reciproka-ops/shell.nix

19 lines
500 B
Nix
Raw Normal View History

2022-07-18 22:20:05 +00:00
{
pkgs ? import <nixpkgs> {},
ragenix,
2022-07-18 22:20:05 +00:00
alejandra,
mkShell,
2022-07-19 04:05:08 +00:00
colmena,
2022-07-18 22:20:05 +00:00
}:
with pkgs;
mkShell {
buildInputs = [
ragenix # CLI management of secrets encrypted via existing SSH keys
2022-07-18 22:20:05 +00:00
alejandra # The Uncompromising Nix Code Formatter
2022-07-19 04:05:08 +00:00
colmena # simple, stateless NixOS deployment tool
2023-12-04 01:07:21 +00:00
nix # Powerful package manager that makes package management reliable and 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
];
}