yt-block fixes

This commit is contained in:
Sebastian Moser
2024-08-15 13:02:57 +02:00
parent a8df39483b
commit 84c973d392
5 changed files with 12 additions and 7 deletions

View File

@@ -1,7 +1,6 @@
{ pkgs, ... }:
let
yt_block = pkgs.callPackage ./app.nix {};
yt_block_starter = pkgs.callPackage ./app.nix {};
in {
systemd.services.yt-block = {
enable = true;
@@ -9,7 +8,7 @@ in {
serviceConfig = {
Restart = "always";
#RestartSec = "60s";
ExecStart = "${yt_block_starter}/bin/yt_block_starter";
ExecStart = "${yt_block}/bin/yt_block starter";
};
wantedBy = [ "multi-user.target" ];
};