From 873f65067885ae1a69d238fd06b28c27f6e39a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 13 Feb 2025 11:44:09 +0700 Subject: [PATCH] remove directory = self from our documentation --- docs/nix/render_options/__init__.py | 2 +- docs/site/manual/migration-guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/nix/render_options/__init__.py b/docs/nix/render_options/__init__.py index 0de75ebb7..e8602960a 100644 --- a/docs/nix/render_options/__init__.py +++ b/docs/nix/render_options/__init__.py @@ -585,7 +585,7 @@ Each attribute is documented below ```nix buildClan { - directory = self; + self = self; machines = { jon = { }; sara = { }; diff --git a/docs/site/manual/migration-guide.md b/docs/site/manual/migration-guide.md index 04b365b70..551a3ef0e 100644 --- a/docs/site/manual/migration-guide.md +++ b/docs/site/manual/migration-guide.md @@ -81,7 +81,7 @@ For the provide flake example, your flake should now look like this: outputs = { self, nixpkgs, ... }: let clan = clan-core.lib.buildClan { - directory = self; # this needs to point at the repository root + self = self; # this needs to point at the repository root specialArgs = {}; inventory.meta.name = "NEEDS_TO_BE_UNIQUE"; # TODO: Changeme