From 439a1ad75cdfe4a49d801a645572887e493f6370 Mon Sep 17 00:00:00 2001 From: Sean Kovacs Date: Fri, 7 Nov 2025 17:44:38 -0500 Subject: [PATCH] fix rclone --- home/all.nix | 1 + hosts/all.nix | 15 ++++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/home/all.nix b/home/all.nix index 46a108f..9b9ece2 100755 --- a/home/all.nix +++ b/home/all.nix @@ -18,6 +18,7 @@ wl-clipboard openmw nixfmt-rfc-style + rclone kde-rounded-corners kdePackages.partitionmanager diff --git a/hosts/all.nix b/hosts/all.nix index a77456a..515a26f 100755 --- a/hosts/all.nix +++ b/hosts/all.nix @@ -196,7 +196,12 @@ ]; }; - fileSystems."/mnt/nas" = { + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + }; + + fileSystems."/home/sckova/Synology" = { device = "synology:/home"; fsType = "rclone"; options = [ @@ -204,15 +209,11 @@ "nofail" "allow_other" "args2env" - "config=/etc/nixos/configs/rclone.conf" + "config=/home/sckova/.config/rclone/rclone.conf" + "vfs-cache-mode=full" ]; }; - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - }; - services.openssh.enable = true; networking.firewall.enable = false;