fileserver deluge

This commit is contained in:
Geir Okkenhaug Jerstad 2024-05-20 14:55:56 +02:00
parent fd398a7226
commit 53fa67f05f
4 changed files with 22 additions and 0 deletions

8
fileserver/deluge.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, config, ... }:
{
services.deluge = {
enable = true;
web.enable = true;
web.port = 8112;
};
}