Files
Dalton Hubble dbe684869d Rename util package to internal to prevent library use
* 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
2024-06-22 10:11:28 -07:00

9 lines
140 B
Nix

{ modulesPath, lib, pkgs, ...}:
{
system.stateVersion = "24.05";
imports = [
"${toString modulesPath}/nixpkgs"
./bar.nix
];
}