From fb56d05754f626a34c5add04aafe1a9b6d7bd01d Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 26 Jul 2024 15:23:35 -0500 Subject: [PATCH] disable backups for now --- nixos/hosts/gandalf/default.nix | 8 +++++--- nixos/hosts/telperion/default.nix | 2 ++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/nixos/hosts/gandalf/default.nix b/nixos/hosts/gandalf/default.nix index 36f9882..77bc4f4 100644 --- a/nixos/hosts/gandalf/default.nix +++ b/nixos/hosts/gandalf/default.nix @@ -2,7 +2,7 @@ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. { config, lib, modulesPath, inputs, ... }: -let +let sanoidConfig = import ./config/sanoid.nix { }; in { @@ -64,7 +64,7 @@ in }; }; }; - + # System settings and services. mySystem = { purpose = "Production"; @@ -79,6 +79,8 @@ in samba.enable = true; samba.shares = import ./config/samba-shares.nix { }; samba.extraConfig = import ./config/samba-config.nix { }; + resticBackup.local.enable = false; + resticBackup.remote.enable = false; }; services = { @@ -90,7 +92,7 @@ in enable = true; inherit (sanoidConfig.outputs) templates datasets; }; - + # Unifi & Lego-Auto unifi.enable = true; lego-auto = { diff --git a/nixos/hosts/telperion/default.nix b/nixos/hosts/telperion/default.nix index d1dbf5e..ca5ff3e 100644 --- a/nixos/hosts/telperion/default.nix +++ b/nixos/hosts/telperion/default.nix @@ -66,6 +66,8 @@ mySystem = { purpose = "Production"; system.motd.networkInterfaces = [ "enp2s0" "wlp3s0" ]; + system.resticBackup.local.enable = false; + system.resticBackup.remote.enable = false; services = { podman.enable = true;