Disable curl services

This commit is contained in:
Curt Spark 2024-11-30 14:07:16 +00:00
parent bd7052e7a1
commit 0fe8620896
1 changed files with 38 additions and 38 deletions

View File

@ -47,46 +47,46 @@
}; };
# Roblox Curl Service # Roblox Curl Service
systemd.user.services.roblox-curl = { #systemd.user.services.roblox-curl = {
Unit = { # Unit = {
Description = "Check what roblox users are online"; # Description = "Check what roblox users are online";
}; # };
Service = { # Service = {
ExecStart = "%h/Documents/RobloxCurlOnline.sh"; # ExecStart = "%h/Documents/RobloxCurlOnline.sh";
}; # };
}; #};
systemd.user.timers.roblox-curl = { #systemd.user.timers.roblox-curl = {
Unit = { # Unit = {
Description = "Check what roblox users are online - hourly"; # Description = "Check what roblox users are online - hourly";
}; # };
Timer = { # Timer = {
OnCalendar = "hourly"; # OnCalendar = "hourly";
}; # };
Install = { # Install = {
WantedBy = [ "timers.target" ]; # WantedBy = [ "timers.target" ];
}; # };
}; #};
# VRChat Curl Service # VRChat Curl Service
systemd.user.services.vrchat-curl = { #systemd.user.services.vrchat-curl = {
Unit = { # Unit = {
Description = "Check what vrchat users are online"; # Description = "Check what vrchat users are online";
}; # };
Service = { # Service = {
ExecStart = "%h/Documents/VRChatCurlOnline.sh"; # ExecStart = "%h/Documents/VRChatCurlOnline.sh";
}; # };
}; #};
systemd.user.timers.vrchat-curl = { #systemd.user.timers.vrchat-curl = {
Unit = { # Unit = {
Description = "Check what vrchat users are online - hourly"; # Description = "Check what vrchat users are online - hourly";
}; # };
Timer = { # Timer = {
OnCalendar = "hourly"; # OnCalendar = "hourly";
}; # };
Install = { # Install = {
WantedBy = [ "timers.target" ]; # WantedBy = [ "timers.target" ];
}; # };
}; #};
programs.bash.shellAliases = { programs.bash.shellAliases = {
nixos-rebuild-system-flake = "sudo nixos-rebuild switch --flake /etc/nixos#desktop"; nixos-rebuild-system-flake = "sudo nixos-rebuild switch --flake /etc/nixos#desktop";