1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-17 21:57:05 +00:00

12 lines
193 B
Nix
Raw Normal View History

2025-01-30 14:48:17 -05:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "terraform-init";
runtimeInputs = [
pkgs.gawk
pkgs.git
pkgs.terraform
];
text = builtins.readFile ./terraform-init.sh;
}