diff --git a/configurations/desktop/home.nix b/configurations/desktop/home.nix index c2d7987b..fd9065e3 100644 --- a/configurations/desktop/home.nix +++ b/configurations/desktop/home.nix @@ -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";