diff options
| author | scouckel <james.krinsky@gmail.com> | 2026-06-14 23:15:07 -0400 |
|---|---|---|
| committer | scouckel <james.krinsky@gmail.com> | 2026-06-14 23:15:07 -0400 |
| commit | 029658ee78bdac2b933dc67c492f7f17358e2254 (patch) | |
| tree | cc57432e2a3944a5c5eb931fe298418bf81d97e9 /modules/nixosModules/server/qbittorrent.nix | |
| parent | 5946be625dc90e2caadb9f7ce73885504033338b (diff) | |
shar to dendritic?
Diffstat (limited to 'modules/nixosModules/server/qbittorrent.nix')
| -rw-r--r-- | modules/nixosModules/server/qbittorrent.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/nixosModules/server/qbittorrent.nix b/modules/nixosModules/server/qbittorrent.nix new file mode 100644 index 0000000..afea0ca --- /dev/null +++ b/modules/nixosModules/server/qbittorrent.nix @@ -0,0 +1,12 @@ +{self, ...}: { + flake.nixosModules.qbittorrent = {config, ...}: { + imports = [ + self.nixosModules.hostOptions + ]; + + services.qbittorrent = { + enable = true; + openFirewall = false; + }; + }; +} |
