You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change adds a Terraform variable `hermetic` and supporting logic
to the Nix expression evaluated by `nix-instantiate` to better support
users that need to evaluate configurations that supply their own
pinned nixpkgs or wrap eval-modules to customize module special args.
Copy file name to clipboardExpand all lines: deploy_nixos/main.tf
+8-1
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,12 @@ variable "target_system" {
93
93
default="x86_64-linux"
94
94
}
95
95
96
+
variable"hermetic" {
97
+
type=bool
98
+
description="Treat the provided nixos configuration as a hermetic expression and do not evaluate using the ambient system nixpkgs. Useful if you customize eval-modules or use a pinned nixpkgs."
0 commit comments