clan-core: fix tarballs

This commit is contained in:
Jörg Thalheim 2024-06-17 13:52:22 +02:00
parent c933ee5a49
commit 10a81b3398
3 changed files with 10 additions and 8 deletions

View File

@ -59,15 +59,15 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1718112778, "lastModified": 1718358837,
"narHash": "sha256-ZS+6CM0eWiM+n7hY1Y7RA+s7wgqzInPCjFbG+NG5KeA=", "narHash": "sha256-GV6s4YPnJBPoGntKSFqwQ/kCLyKwYUO8OJKOYg/8uOY=",
"rev": "4a752bb951c3cecb9de7e66214b95153cf6c39c8", "rev": "a817d966af24681d1134783261059f254e1eec43",
"type": "tarball", "type": "tarball",
"url": "https://git.clan.lol/api/v1/repos/clan/clan-core/archive/4a752bb951c3cecb9de7e66214b95153cf6c39c8.tar.gz" "url": "https://git.clan.lol/api/v1/repos/clan/clan-core/archive/a817d966af24681d1134783261059f254e1eec43.tar.gz"
}, },
"original": { "original": {
"type": "tarball", "type": "tarball",
"url": "https://git.clan.lol/clan/clan-core/archive/main.tar.gz" "url": "https://git.clan.lol/clan/clan-core/archive/matrix.tar.gz"
} }
}, },
"disko": { "disko": {

View File

@ -26,7 +26,7 @@
# Use the version of nixpkgs that has been tested to work with SrvOS # Use the version of nixpkgs that has been tested to work with SrvOS
srvos.inputs.nixpkgs.follows = "nixpkgs"; 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.flake-parts.follows = "flake-parts";
clan-core.inputs.nixpkgs.follows = "nixpkgs"; clan-core.inputs.nixpkgs.follows = "nixpkgs";
clan-core.inputs.treefmt-nix.follows = "treefmt-nix"; clan-core.inputs.treefmt-nix.follows = "treefmt-nix";

View File

@ -3,6 +3,8 @@
imports = [ self.inputs.clan-core.clanModules.matrix-synapse ]; imports = [ self.inputs.clan-core.clanModules.matrix-synapse ];
clan.matrix-synapse.domain = "clan.lol"; clan.matrix-synapse.domain = "clan.lol";
clan.matrix-synapse.users.admin = { admin = true; }; clan.matrix-synapse.users.admin = {
clan.matrix-synapse.users.monitoring = {}; admin = true;
};
clan.matrix-synapse.users.monitoring = { };
} }