1
0
Fork 0
mirror of https://git.sr.ht/~azikx/wyswort synced 2024-10-30 05:36:19 +00:00

update 

This commit is contained in:
azikx 2024-10-15 17:47:49 +09:00
parent 83325b48d4
commit 38abbd202c
3 changed files with 4 additions and 4 deletions

View file

@ -10,6 +10,6 @@
./user.nix
./zapret.nix
./torrserver.nix
# ./torrserver.nix
];
}

View file

@ -10,7 +10,7 @@ in
helix
hyprland
home-manager
(callPackage ./torrserver/default.nix { })
# (callPackage ./torrserver/default.nix { })
];
# PROGRAMS ENABLE

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
let
torrserver = pkgs.callpackage ./torrserver {};
torrserver = pkgs.callPackage ./torrserver {};
in
{
systemd = {
@ -11,7 +11,7 @@ in
wantedBy = ["multi-user.target"];
path = [ torrserver ];
serviceConfig = {
ExecStart = "torrserver";
ExecStart = "${pkgs.torrserver}";
};
};
};