containers: add qbittorent

This commit is contained in:
Veneficium 2024-12-24 14:41:06 +01:00
parent f5705ae08d
commit 89947435e1
3 changed files with 51 additions and 3 deletions

13
containers/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ lib, ... }:
{
imports = [
"./jellyfin.nix"
"./qbittorent.nix"
];
settings.containers = {
jellyfin.enable = lib.mkDefault false;
qbittorent.enable = lib.mkDefault false;
};
}