fix: Add missing flag

This commit is contained in:
batteredbunny 2025-03-19 23:50:48 +02:00
parent 3f4bd88199
commit ae28067e87

View file

@ -47,6 +47,16 @@ in
default = "/var/lib/qBittorrent/";
description = "the path passed to qbittorrent via --profile.";
};
extraArgs = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
description = ''
Extra arguments passed to qbittorrent. See `qbittorrent -h`, or the [source code](https://github.com/qbittorrent/qBittorrent/blob/master/src/app/cmdoptions.cpp), for the available arguments.
'';
example = [
"--confirm-legal-notice"
];
};
};
config = lib.mkIf cfg.enable {
systemd = {