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 = [
./configuration.nix
./hardware-configuration.nix
./mas.nix
./postgresql.nix
./matrix-synapse.nix
./nginx.nix

View file

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