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. # zsh dont want to work if it is not initialzed here.
programs.zsh.enable = true; programs.zsh.enable = true;
# removes rclone error
programs.fuse.userAllowOther = true;
programs.fuse.enable = true;
security.wrappers.gsr-kms-server = { security.wrappers.gsr-kms-server = {
# to remove the password prompt when using gpu-screen-recorder # to remove the password prompt when using gpu-screen-recorder
owner = "root"; owner = "root";
@@ -160,7 +165,7 @@
users.users.tomasr = { users.users.tomasr = {
isNormalUser = true; isNormalUser = true;
description = "Tomas Rivera"; 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; shell = pkgs.zsh;
}; };
+1 -1
View File
@@ -217,7 +217,7 @@ in {
"swww img ${wallpaper}" "swww img ${wallpaper}"
"swww-daemon" "swww-daemon"
"sleep 1 && custom-wallpaper" "sleep 1 && custom-wallpaper"
"custom-checkKdrive && custom-mountkdrive" # checks if the remote works and mount it "sleep 5 && custom-checkKdrive && custom-mountkdrive" # checks if the remote works and mount it
#"waybar" #"waybar"
"custom-gitnotify" "custom-gitnotify"
"custom-checkMatrix" # checks if matrix-commander-rs is connected which is important for other stuff "custom-checkMatrix" # checks if matrix-commander-rs is connected which is important for other stuff