nixos-anywhere/terraform/nix-build/variables.tf
2024-07-01 11:32:17 +00:00

17 lines
327 B
HCL

variable "attribute" {
type = string
description = "the attribute to build, can also be a flake"
}
variable "file" {
type = string
description = "the nix file to evaluate, if not run in flake mode"
default = null
}
variable "nix_options" {
type = map(string)
description = "the options of nix"
default = {}
}