mirror of
https://github.com/outbackdingo/terraform-provider-util.git
synced 2026-01-28 02:20:32 +00:00
* It's conventional to implement Terraform providers within an internal package, since they're not intended to be consumed or relied upon as Go libraries
9 lines
140 B
Nix
9 lines
140 B
Nix
{ modulesPath, lib, pkgs, ...}:
|
|
{
|
|
system.stateVersion = "24.05";
|
|
imports = [
|
|
"${toString modulesPath}/nixpkgs"
|
|
./bar.nix
|
|
];
|
|
}
|