Merge pull request #78 from mausch/patch-1

Fix reference to module in docs
This commit is contained in:
Ryan Mulligan 2021-11-30 16:38:58 -08:00 committed by GitHub
commit 52ea2f8c32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ Then add the following to your configuration.nix in the `imports` list:
```nix ```nix
{ {
imports = [ "${(import ./nix/sources.nix).agenix}/modules/age" ]; imports = [ "${(import ./nix/sources.nix).agenix}/modules/age.nix" ];
} }
``` ```
@ -93,7 +93,7 @@ $ nix-channel --update
url = "https://github.com/ryantm/agenix/archive/${commit}.tar.gz"; url = "https://github.com/ryantm/agenix/archive/${commit}.tar.gz";
# replace this with an actual hash # replace this with an actual hash
sha256 = "0000000000000000000000000000000000000000000000000000"; sha256 = "0000000000000000000000000000000000000000000000000000";
}}/modules/age" }}/modules/age.nix"
]; ];
} }
``` ```