alpine: something something
This commit is contained in:
parent
2c406b36d3
commit
5732609a52
3 changed files with 9 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
services.jellyfin = {
|
services.jellyfin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
group = "media"; # access to user stuff
|
group = "media"; # access to user stuff
|
||||||
|
openFirewall = true;
|
||||||
};
|
};
|
||||||
services.nginx.virtualHosts."movies.tristans.cloud" = {
|
services.nginx.virtualHosts."movies.tristans.cloud" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,11 @@ in {
|
||||||
replication_factor = 1;
|
replication_factor = 1;
|
||||||
path_prefix = "/tmp/loki";
|
path_prefix = "/tmp/loki";
|
||||||
};
|
};
|
||||||
limits_config.ingestion_rate_strategy = "local";
|
limits_config = {
|
||||||
|
ingestion_rate_strategy = "local";
|
||||||
|
ingestion_rate_mb = 24;
|
||||||
|
ingestion_burst_size_mb = 36;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.prometheus.scrapeConfigs = [{
|
services.prometheus.scrapeConfigs = [{
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,9 @@
|
||||||
{config, ...}:
|
{config, ...}:
|
||||||
{
|
{
|
||||||
# TODO: totally borked for some reason. DB migration?
|
# TODO: totally borked for some reason. DB migration?
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
"olm-3.2.16"
|
||||||
|
];
|
||||||
services.mautrix-whatsapp = {
|
services.mautrix-whatsapp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
registerToSynapse = true;
|
registerToSynapse = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue