diff options
author | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-09-23 18:37:18 +0000 |
---|---|---|
committer | Parthiv Seetharaman <pachum99@myrdd.info> | 2022-09-23 18:37:18 +0000 |
commit | efdc09f26e3b01801edaa3b0e2bdd46d9d133bba (patch) | |
tree | 069f6c4b12da0d934781371eda762ac1496fabfa | |
parent | 0b1be3194ae47fa0b2cbfd976955b2b66e0a8838 (diff) | |
parent | 270375d0aeddeb3488b3091be861192341d847d5 (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.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ]; } ``` |