fix slow rebuild by not triggering timers accidentally
This commit is contained in:
@@ -8,4 +8,8 @@
|
||||
tokenFile = config.age.secrets.duckdns.path;
|
||||
domains = [ "kavita-kopatz" ];
|
||||
};
|
||||
systemd.services.duckdns = {
|
||||
wantedBy = lib.mkForce [];
|
||||
startAt = lib.mkForce "daily";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -70,9 +70,9 @@ in {
|
||||
else
|
||||
config.age.secrets.kavita.path;
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
libgbm
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
libgbm
|
||||
];
|
||||
|
||||
#todo: base url needs new kavita version
|
||||
systemd.services = {
|
||||
@@ -80,8 +80,6 @@ in {
|
||||
after = [ "nginx.service" ] ++ lib.optional useStepCa "step-ca.service";
|
||||
};
|
||||
download-manga = mkIf cfg.autoDownload {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
wants = [ "network-online.target" ];
|
||||
after = [ "network-online.target" ];
|
||||
startAt = "*-*-* 19:00:00";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
networking.firewall.allowedTCPPorts = [ 22 ];
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
allowSFTP = false;
|
||||
allowSFTP = true;
|
||||
settings.PasswordAuthentication = false;
|
||||
settings.KbdInteractiveAuthentication = false;
|
||||
settings.X11Forwarding = false;
|
||||
|
||||
@@ -84,11 +84,6 @@ in {
|
||||
path = "${cfg.basePath}/no_backup";
|
||||
devices = [ "kop-pc" "server" "laptop" ];
|
||||
};
|
||||
folders."emu" = {
|
||||
id = "emu";
|
||||
path = "${cfg.basePath}/emu";
|
||||
devices = [ "kop-pc" "server" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user