diff --git a/modules/system/homelab/cdn.nix b/modules/system/homelab/cdn.nix index 85b4537..7ec0b81 100644 --- a/modules/system/homelab/cdn.nix +++ b/modules/system/homelab/cdn.nix @@ -1,6 +1,5 @@ { inputs, pkgs, ... }: { environment.systemPackages = with pkgs; [ copyparty-most ]; - nixpkgs.overlays = [ inputs.cp.overlays.default ]; imports = [ inputs.cp.nixosModules.default ]; systemd.services.copyparty = { @@ -9,7 +8,7 @@ after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; serviceConfig = { - ExecStart = "${pkgs.copyparty}/bin/copyparty -c /mnt/share/cfg/files.conf"; + ExecStart = "${pkgs.copyparty-most}/bin/copyparty -c /mnt/share/cfg/files.conf"; Restart = "on-failure"; }; };