shell.nix
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Tobias Manske 2024-05-27 22:46:37 +02:00
parent 2e05fc2393
commit d07be261c7
2 changed files with 18 additions and 0 deletions

3
ansible/.envrc Normal file
View File

@ -0,0 +1,3 @@
use nix
#!/usr/bin/env bash
export SUMMON_PROVIDER=$PWD/../summon-wrapper

15
ansible/shell.nix Normal file
View File

@ -0,0 +1,15 @@
{ 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
];
}