rclone: fixed bug. How? I don't know. It might be the sleep 5

This commit is contained in:
2026-05-15 23:21:00 +02:00
parent 5a150349e0
commit 142bfa8ff9
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -97,6 +97,11 @@
# zsh dont want to work if it is not initialzed here.
programs.zsh.enable = true;
# removes rclone error
programs.fuse.userAllowOther = true;
programs.fuse.enable = true;
security.wrappers.gsr-kms-server = {
# to remove the password prompt when using gpu-screen-recorder
owner = "root";
@@ -160,7 +165,7 @@
users.users.tomasr = {
isNormalUser = true;
description = "Tomas Rivera";
extraGroups = ["networkmanager" "wheel"]; #wheel allow to use sudo
extraGroups = ["networkmanager" "wheel" "fuse"]; #wheel allow to use sudo / fuse -> rclone
shell = pkgs.zsh;
};