mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
rclone: fixed bug. How? I don't know. It might be the sleep 5
This commit is contained in:
@@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user