infrastructure/ansible/shell.nix

16 lines
272 B
Nix
Raw Normal View History

2024-05-27 22:46:37 +02:00
{ pkgs ? import <nixpkgs> {} }:
let
overrides = (builtins.fromTOML (builtins.readFile ./rust-toolchain.toml));
libPath = with pkgs; lib.makeLibraryPath [];
in
pkgs.mkShell {
packages = with pkgs; [
opentofu
summon
ansible
passage
# cargo
];
}