Fix reference to module in docs

This commit is contained in:
Mauricio Scheffer 2021-11-30 23:08:57 +00:00 committed by GitHub
parent f85eea0e29
commit 4625cd526f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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"
]; ];
} }
``` ```