Add deluge

This commit is contained in:
Ivan R. 2023-10-04 23:47:46 +05:00
parent fea1e7d5ab
commit e4dfb48a0c
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C
2 changed files with 9 additions and 0 deletions

View file

@ -25,6 +25,7 @@
./programs/freshrss.nix ./programs/freshrss.nix
./programs/comfycamp.nix ./programs/comfycamp.nix
./programs/phoenix.nix ./programs/phoenix.nix
./programs/deluge.nix
]; ];
# Enable flakes # Enable flakes
@ -52,6 +53,7 @@
vips vips
go go
pkg-config pkg-config
deluged
]; ];
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.

View file

@ -0,0 +1,7 @@
{ config, ... }:
{
services.deluge = {
enable = true;
web.enable = false;
};
}