infrastructure/machines/nixos/web01/matterbridge.nix
Tom Hubrecht ecbad0a638
chore: Abstract machines and modules
This adds subdirectories for the different types of systems, for the
modules and the machines
2024-12-08 13:39:10 +01:00

10 lines
190 B
Nix

{ config, ... }:
{
services.matterbridge = {
enable = true;
configPath = config.age.secrets."matterbridge-config_file".path;
};
age-secrets.autoMatch = [ "matterbridge" ];
}