mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-14 21:03:10 +01:00
nuc: disable dnssec as it breaks matrix
This commit is contained in:
parent
f0cae501f9
commit
7a8e304ca1
|
@ -27,6 +27,9 @@ in
|
|||
enable = true;
|
||||
configureRedisLocally = true;
|
||||
extraConfigFiles = [ config.age.secrets."matrix/shared".path ];
|
||||
log = {
|
||||
root.level = "WARNING";
|
||||
};
|
||||
|
||||
settings = {
|
||||
server_name = config.networking.domain;
|
||||
|
|
|
@ -14,7 +14,8 @@
|
|||
};
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
dnssec = "true";
|
||||
# dnssec is broken
|
||||
# dnssec = "true";
|
||||
fallbackDns = [
|
||||
"9.9.9.9"
|
||||
"149.112.112.112"
|
||||
|
|
|
@ -10,7 +10,7 @@ in
|
|||
enable = true;
|
||||
enabledCollectors = [ "systemd" ];
|
||||
};
|
||||
postgres.enable = true;
|
||||
# postgres.enable = true;
|
||||
};
|
||||
scrapeConfigs = [
|
||||
{
|
||||
|
@ -21,14 +21,14 @@ in
|
|||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
job_name = "postgres";
|
||||
static_configs = [
|
||||
{
|
||||
targets = [ "127.0.0.1:${toString exportersConfig.postgres.port}" ];
|
||||
}
|
||||
];
|
||||
}
|
||||
# {
|
||||
# job_name = "postgres";
|
||||
# static_configs = [
|
||||
# {
|
||||
# targets = [ "127.0.0.1:${toString exportersConfig.postgres.port}" ];
|
||||
# }
|
||||
# ];
|
||||
# }
|
||||
];
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue