switched from a package overlay to having packages as an output

This commit is contained in:
Gerg-L 2023-03-08 20:49:31 -05:00
parent eb9ad6a73a
commit f727e15f2c
3 changed files with 18 additions and 16 deletions

View file

@ -1,6 +1,7 @@
_: {
pkgs,
config,
self,
...
}: {
#discord bot stuff
@ -9,7 +10,7 @@ _: {
wantedBy = ["multi-user.target"];
wants = ["network-online.target"];
after = ["network-online.target"];
script = "${pkgs.parrot}/bin/parrot";
script = "${self.packages.${pkgs.system}.parrot}/bin/parrot";
serviceConfig = {
EnvironmentFile = config.sops.secrets.discordenv.path;
Restart = "on-failure";