diff --git a/README.md b/README.md index 3b1e1e2..43a4dcb 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ home-manager switch --flake github:Logan-Lin/nix-config#yanlin@thinkpad │ ├── ghostty.nix # GPU-accelerated terminal emulator │ ├── syncthing.nix # File synchronization service (includes package) │ ├── wireguard.nix # Hub-and-spoke VPN networking -│ ├── borg.nix # Borg backup system with automated scheduling +│ ├── borg-client.nix # Borg backup system with automated scheduling │ ├── plasma.nix # KDE Plasma desktop environment configuration │ └── homebrew.nix # Homebrew and nix-homebrew configuration ├── config/ # Configuration files @@ -867,7 +867,7 @@ hms ## 📦 Automated Backups: Borg -**Configuration**: `modules/borg.nix` +**Configuration**: `modules/borg-client.nix` **Purpose**: Deduplicating archiver with compression and encryption for automated backups ### Key Features: diff --git a/hosts/nixos/hs/system.nix b/hosts/nixos/hs/system.nix index cb36e95..5681258 100644 --- a/hosts/nixos/hs/system.nix +++ b/hosts/nixos/hs/system.nix @@ -8,7 +8,7 @@ ../../../modules/podman.nix ../../../modules/traefik.nix ../../../modules/samba.nix - ../../../modules/borg.nix + ../../../modules/borg-client.nix ../../../modules/webdav.nix ]; diff --git a/hosts/nixos/vps/system.nix b/hosts/nixos/vps/system.nix index 06d73fe..863d90a 100644 --- a/hosts/nixos/vps/system.nix +++ b/hosts/nixos/vps/system.nix @@ -6,7 +6,7 @@ ../../../modules/wireguard.nix ../../../modules/podman.nix ../../../modules/traefik.nix - ../../../modules/borg.nix + ../../../modules/borg-client.nix ]; # GRUB bootloader with UEFI support diff --git a/modules/borg.nix b/modules/borg-client.nix similarity index 100% rename from modules/borg.nix rename to modules/borg-client.nix