2022-07-18 22:20:05 +00:00
|
|
|
{
|
|
|
|
pkgs ? import <nixpkgs> {},
|
2023-04-05 05:55:44 +00:00
|
|
|
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 = [
|
2023-04-05 05:55:44 +00:00
|
|
|
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
|
|
|
|
];
|
|
|
|
}
|