copyparty package change

This commit is contained in:
Satria 2026-07-12 11:49:30 +07:00
commit b3e154a0b6

View file

@ -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";
};
};