mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 15:42:02 +00:00
12 lines
193 B
Nix
12 lines
193 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "terraform-init";
|
||
|
runtimeInputs = [
|
||
|
pkgs.gawk
|
||
|
pkgs.git
|
||
|
pkgs.terraform
|
||
|
];
|
||
|
text = builtins.readFile ./terraform-init.sh;
|
||
|
}
|