My Nix Configuration

[hosts.marvin] Fix bot deployment errors

Changed files
+2
hosts
marvin
services
+2
hosts/marvin/services/bots.nix
···
wantedBy = ["multi-user.target"];
after = ["network.target" "io-bot-lavalink.service"];
description = "I/O, my personal bot";
+
path = [pkgs.python311];
serviceConfig = {
ExecStart = "${pkgs.bash}/bin/bash start.sh";
Restart = "always";
···
wantedBy = ["multi-user.target"];
after = ["network.target"];
description = "Random Bot 1";
+
path = [pkgs.python311];
serviceConfig = {
ExecStart = "${pkgs.bash}/bin/bash start.sh";
Restart = "always";