blob: afea0ca3e31f5dd957a00553dad64ced1211e2cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{self, ...}: {
flake.nixosModules.qbittorrent = {config, ...}: {
imports = [
self.nixosModules.hostOptions
];
services.qbittorrent = {
enable = true;
openFirewall = false;
};
};
}
|