From f92a612bca2be229d520e7901c6d5ff5e4f95f82 Mon Sep 17 00:00:00 2001 From: Phorcys <57866459+phorcys420@users.noreply.github.com> Date: Sun, 14 Apr 2024 14:52:28 +0000 Subject: [PATCH] chore(dotfiles): unfix typo in README to stay in the scope of the PR --- dotfiles/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dotfiles/README.md b/dotfiles/README.md index 5a71ff3..7e616a4 100644 --- a/dotfiles/README.md +++ b/dotfiles/README.md @@ -66,13 +66,13 @@ module "dotfiles-root" { ## Setting a default dotfiles repository -You can set a default dotfiles repository for all users by setting the `default_dotfiles_uri` variable. +You can set a default dotfiles repository for all users by setting the `default_dotfiles_repo` variable: ```tf module "dotfiles" { - source = "registry.coder.com/modules/dotfiles/coder" - version = "1.0.12" - agent_id = coder_agent.example.id - default_dotfiles_uri = "https://github.com/coder/dotfiles" + source = "registry.coder.com/modules/dotfiles/coder" + version = "1.0.12" + agent_id = coder_agent.example.id + default_dotfiles_repo = "https://github.com/coder/dotfiles" } ```