system: change channels

This commit is contained in:
2025-05-05 14:58:11 +03:00
parent 7eedb9098a
commit 724633d928
13 changed files with 39 additions and 36 deletions

View File

@ -1,11 +1,11 @@
{pkgs, config, ...}: {
{ pkgs, pkgs-unstable, config, ...}: {
systemd.services.v2raya = {
enable = true;
description = "v2rayA gui client";
after = [ "network.target" ];
serviceConfig = {
Restart = "always";
ExecStart = "${pkgs.v2raya}/bin/v2rayA";
ExecStart = "${pkgs-unstable.v2raya}/bin/v2rayA";
};
path = with pkgs; [ iptables bash iproute2 ];
wantedBy = [ "multi-user.target" ];