17 lines
305 B
HCL
17 lines
305 B
HCL
resource "incus_instance" "zen" {
|
|
name = "zen"
|
|
image = incus_image.nixos-lxc-base.fingerprint
|
|
|
|
config = {
|
|
"boot.autostart" = true
|
|
"limits.cpu" = 2
|
|
}
|
|
|
|
device {
|
|
name = "zfs"
|
|
type = "unix-block"
|
|
properties = {
|
|
source = "/dev/disk/by-id/wwn-0x50014ee2671b7f30"
|
|
}
|
|
}
|
|
}
|