jellyfin broke?

This commit is contained in:
2025-07-24 15:37:50 -05:00
parent 46b39d14b1
commit 375ee4aa93
2 changed files with 44 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
{ config, lib, ... }: {
options.sysconfig.opts.virtualization.keycloak.enable = lib.options.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.sysconfig.opts.virtualization.keycloak.enable {
containers.keycloak = {
autoStart = true;
privateNetwork = true;
hostAddress = "192.168.100.10";
localAddress = "192.168.100.22";
bindMounts = {
"/etc/keycloak" = {
hostPath = "/ssd1/Keycloak";
isReadOnly = false;
};
};
config = {
services.keycloak = {
enable = true;
settings = {
hostname = "auth.blunkall.us";
http-enabled = true;
};
};
system.stateVersion = "25.05";
};
};
};
}