fix rclone

This commit is contained in:
Sean Kovacs 2025-11-07 17:44:38 -05:00
commit 439a1ad75c
Signed by: sckova
GPG key ID: 00F325187C68651A
2 changed files with 9 additions and 7 deletions

View file

@ -18,6 +18,7 @@
wl-clipboard wl-clipboard
openmw openmw
nixfmt-rfc-style nixfmt-rfc-style
rclone
kde-rounded-corners kde-rounded-corners
kdePackages.partitionmanager kdePackages.partitionmanager

View file

@ -196,7 +196,12 @@
]; ];
}; };
fileSystems."/mnt/nas" = { programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
fileSystems."/home/sckova/Synology" = {
device = "synology:/home"; device = "synology:/home";
fsType = "rclone"; fsType = "rclone";
options = [ options = [
@ -204,15 +209,11 @@
"nofail" "nofail"
"allow_other" "allow_other"
"args2env" "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; services.openssh.enable = true;
networking.firewall.enable = false; networking.firewall.enable = false;