style: nix fmt

This commit is contained in:
Kat Inskip 2025-07-13 05:10:57 -07:00
parent 7913481b66
commit 6e0cc170eb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
112 changed files with 1977 additions and 1739 deletions

View file

@ -1,22 +1,22 @@
resource "cloudflare_pages_project" "dorkdev" {
account_id = local.account_id
name = "dorkdev"
account_id = local.account_id
name = "dorkdev"
production_branch = "main"
source {
type = "github"
config {
owner = "kittywitch"
repo_name = "dork.dev"
production_branch = "main"
deployments_enabled = true
pr_comments_enabled = false
production_deployment_enabled = true
owner = "kittywitch"
repo_name = "dork.dev"
production_branch = "main"
deployments_enabled = true
pr_comments_enabled = false
production_deployment_enabled = true
}
}
build_config {
build_command = "zola build"
build_command = "zola build"
destination_dir = "public"
#root_dir = "/"
}
@ -26,7 +26,7 @@ resource "cloudflare_pages_project" "dorkdev" {
production {
environment_variables = {
UNSTABLE_PRE_BUILD = "asdf plugin add zola https://github.com/salasrod/asdf-zola && asdf install zola 0.20.0 && asdf global zola 0.20.0"
ZOLA_VERSION = "0.20.0"
ZOLA_VERSION = "0.20.0"
}
}
}
@ -39,9 +39,9 @@ resource "cloudflare_pages_project" "dorkdev" {
}
resource "cloudflare_pages_domain" "dorkdev_root" {
account_id = local.account_id
project_name = "dorkdev"
domain = local.zones.dork
account_id = local.account_id
project_name = "dorkdev"
domain = local.zones.dork
}