summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index bea4690..187bf8b 100644
--- a/README.md
+++ b/README.md
@@ -98,10 +98,10 @@ In your `configuration.nix` or any other profile/module:
{ pkgs, ... }:
let
nix-matrix-appservices = fetchTarball
- "https://gitlab.com/coffeetables/nix-matrix-appservices/-/archive/master/myrdd-master.tar.gz";
+ "https://gitlab.com/coffeetables/nix-matrix-appservices/-/archive/main/main.tar.gz";
{
imports = [
- "${nix-matrix-appservices}/module"
+ (import "${nix-matrix-appservices}/modules" {}).matrix-appservices
];
}
```