From d8be26269bb595559a06a2352eff4f2bdd60dd84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 17 Jun 2024 13:52:22 +0200 Subject: [PATCH] clan-core: fix tarballs --- flake.nix | 2 +- modules/web01/matrix-synapse.nix | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 6f556a8..13a05fd 100644 --- a/flake.nix +++ b/flake.nix @@ -26,7 +26,7 @@ # Use the version of nixpkgs that has been tested to work with SrvOS srvos.inputs.nixpkgs.follows = "nixpkgs"; - clan-core.url = "https://git.clan.lol/clan/clan-core/archive/main.tar.gz"; + clan-core.url = "https://git.clan.lol/clan/clan-core/archive/matrix.tar.gz"; clan-core.inputs.flake-parts.follows = "flake-parts"; clan-core.inputs.nixpkgs.follows = "nixpkgs"; clan-core.inputs.treefmt-nix.follows = "treefmt-nix"; diff --git a/modules/web01/matrix-synapse.nix b/modules/web01/matrix-synapse.nix index 71c6abb..749a6bc 100644 --- a/modules/web01/matrix-synapse.nix +++ b/modules/web01/matrix-synapse.nix @@ -3,6 +3,8 @@ imports = [ self.inputs.clan-core.clanModules.matrix-synapse ]; clan.matrix-synapse.domain = "clan.lol"; - clan.matrix-synapse.users.admin = { admin = true; }; - clan.matrix-synapse.users.monitoring = {}; + clan.matrix-synapse.users.admin = { + admin = true; + }; + clan.matrix-synapse.users.monitoring = { }; }