core-01: make it work for 23.05

This commit is contained in:
sinavir 2023-07-23 16:55:26 +02:00 committed by Raito Bezarius
parent 793e4d2aee
commit 55c7194022
3 changed files with 10 additions and 39 deletions

View file

@ -10,7 +10,6 @@
./backups.nix
# ./dex.nix
./dns.nix
./dokuwiki.nix
./gitea.nix
./headscale.nix
./keycloak.nix

View file

@ -1,28 +0,0 @@
{ config, ... }:
let
my = config.my;
in
{
services.dokuwiki.sites."wiki.${my.subZone}" = {
enable = true;
acl = ''
* @ALL 1
* @admin 16
'';
};
/*
services.nginx = {
enable = true;
virtualHosts."wiki.${my.subZone}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "htttp://127.0.0.1:${toString port}";
};
};
};
*/
}

View file

@ -36,16 +36,16 @@ in
{
services.netdata = {
enable = true;
package = pkgs.netdata.overrideAttrs (old: {
version = "1.36.0-185-nightly";
src = pkgs.fetchFromGitHub {
owner = "netdata";
repo = "netdata";
rev = "284d5450ec938b667db9985aca6d3cd02b96487f";
sha256 = "sha256-QRZL1RjspiqpR1cq8TDqY0wDc4ct7BDY0vbddsvlHgc=";
fetchSubmodules = true;
};
});
#package = pkgs.netdata.overrideAttrs (old: {
# version = "1.36.0-185-nightly";
# src = pkgs.fetchFromGitHub {
# owner = "netdata";
# repo = "netdata";
# rev = "284d5450ec938b667db9985aca6d3cd02b96487f";
# sha256 = "sha256-QRZL1RjspiqpR1cq8TDqY0wDc4ct7BDY0vbddsvlHgc=";
# fetchSubmodules = true;
# };
#});
};
systemd.services.netdata.environment."NETDATA_DISABLE_CLOUD" = "1";