From f417afd48913d02e7ef4e42ccbbb653b6df8f646 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Tue, 22 Aug 2023 13:49:53 +0200 Subject: [PATCH] chore: fix typos --- src/nixos-anywhere.sh | 2 +- terraform/all-in-one/variables.tf | 6 +++--- terraform/install/variables.tf | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/nixos-anywhere.sh b/src/nixos-anywhere.sh index 34a771ab..7f6a7144 100755 --- a/src/nixos-anywhere.sh +++ b/src/nixos-anywhere.sh @@ -30,7 +30,7 @@ Options: * --post-kexec-ssh-port after kexec is executed, use a custom ssh port to connect. Defaults to 22 * --stop-after-disko - exit after disko formating, you can then proceed to install manually or some other way + exit after disko formatting, you can then proceed to install manually or some other way * --extra-files files to copy into the new nixos installation * --disk-encryption-keys diff --git a/terraform/all-in-one/variables.tf b/terraform/all-in-one/variables.tf index 98289dbb..51226d77 100644 --- a/terraform/all-in-one/variables.tf +++ b/terraform/all-in-one/variables.tf @@ -4,13 +4,13 @@ variable "kexec_tarball_url" { default = null } -# To make this re-usuable we maybe should accept a store path here? +# To make this re-usable we maybe should accept a store path here? variable "nixos_partitioner_attr" { type = string description = "Nixos partitioner and mount script i.e. your-flake#nixosConfigurations.your-evaluated-nixos.config.system.build.diskoNoDeps or just your-evaluated.config.system.build.diskNoDeps. `config.system.build.diskNoDeps` is provided by the disko nixos module" } -# To make this re-usuable we maybe should accept a store path here? +# To make this re-usable we maybe should accept a store path here? variable "nixos_system_attr" { type = string description = "The nixos system to deploy i.e. your-flake#nixosConfigurations.your-evaluated-nixos.config.system.build.toplevel or just your-evaluated-nixos.config.system.build.toplevel if you are not using flakes" @@ -71,6 +71,6 @@ variable "debug_logging" { variable "stop_after_disko" { type = bool - description = "Exit after disko formating" + description = "Exit after disko formatting" default = false } diff --git a/terraform/install/variables.tf b/terraform/install/variables.tf index 2ca66704..f45b9a18 100644 --- a/terraform/install/variables.tf +++ b/terraform/install/variables.tf @@ -4,13 +4,13 @@ variable "kexec_tarball_url" { default = null } -# To make this re-usuable we maybe should accept a store path here? +# To make this re-usable we maybe should accept a store path here? variable "nixos_partitioner" { type = string description = "nixos partitioner and mount script" } -# To make this re-usuable we maybe should accept a store path here? +# To make this re-usable we maybe should accept a store path here? variable "nixos_system" { type = string description = "The nixos system to deploy" @@ -53,6 +53,6 @@ variable "debug_logging" { variable "stop_after_disko" { type = bool - description = "Exit after disko formating" + description = "Exit after disko formatting" default = false }