Install matrix-authentication-service package on matrix host

This commit is contained in:
Fiona Grzebien 2024-11-08 01:03:10 +01:00
parent 35b9a0ceda
commit c6913d2be5
2 changed files with 7 additions and 0 deletions

View file

@ -3,6 +3,7 @@
imports = [ imports = [
./configuration.nix ./configuration.nix
./hardware-configuration.nix ./hardware-configuration.nix
./mas.nix
./postgresql.nix ./postgresql.nix
./matrix-synapse.nix ./matrix-synapse.nix
./nginx.nix ./nginx.nix

View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
matrix-authentication-service
];
}