services.newt.blueprint
NixOS option
Blueprint for declarative settings, see Newt Blueprint docs for more information.
type: YAML 1.1 valueDefault
{ }Example
declared in: nixos/modules/services/networking/newt.nixView source on NixOS/nixpkgs →{
proxy-resources = {
jellyfin = {
auth = {
sso-enabled = true;
};
full-domain = "jfn.example.com";
name = "Jellyfin";
protocol = "http";
targets = [
{
hostname = "localhost";
method = "http";
port = 8096;
}
];
};
};
}