jellyfin broke?
This commit is contained in:
@@ -260,7 +260,7 @@
|
|||||||
virtualization = {
|
virtualization = {
|
||||||
traefik.enable = true;
|
traefik.enable = true;
|
||||||
authentik.enable = true;
|
authentik.enable = true;
|
||||||
jellyfin.enable = true;
|
jellyfin.enable = false;
|
||||||
"blunkall.us".enable = true;
|
"blunkall.us".enable = true;
|
||||||
pihole.enable = false; #broken
|
pihole.enable = false; #broken
|
||||||
nextcloud.enable = true;
|
nextcloud.enable = true;
|
||||||
|
|||||||
43
system-config/services/containers/keycloak/default.nix
Normal file
43
system-config/services/containers/keycloak/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user