reciproka-ops/shell.nix

20 lines
492 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
nix,
}:
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
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
];
}