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