summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParthiv Seetharaman <pachum99@myrdd.info>2022-09-23 18:37:18 +0000
committerParthiv Seetharaman <pachum99@myrdd.info>2022-09-23 18:37:18 +0000
commitefdc09f26e3b01801edaa3b0e2bdd46d9d133bba (patch)
tree069f6c4b12da0d934781371eda762ac1496fabfa
parent0b1be3194ae47fa0b2cbfd976955b2b66e0a8838 (diff)
parent270375d0aeddeb3488b3091be861192341d847d5 (diff)
Merge branch 'nh21-main-patch-06178' into 'main'
README: Fix non-flakes URL and import See merge request coffeetables/nix-matrix-appservices!10
-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
];
}
```