initial murmur stuff, still have to configure it properly and set up the reverse proxy

This commit is contained in:
Ittihadyya 2024-11-21 22:33:21 +02:00
parent 842e447826
commit eb91399a38
3 changed files with 30 additions and 2 deletions

View file

@ -0,0 +1,15 @@
{
glucose.modules = [
({pkgs, config, lib, ...}: {
services.murmur = {
enable = true;
environmentFile = "${config.sops.templates."murmur.env.secrets.yaml".path}";
welcometext = "$MURMUR_WELCOME_MESSAGE";
registerPassword = "$MURMUR_REGISTRY_PASSWORD";
password = "$MURMUR_LOGIN_PASSWORD";
};
})
];
}