nix-config/modules/nixos/services/flood/default.nix
Bruno BELANYI f80d1684df
Some checks failed
ci/woodpecker/push/check Pipeline failed
WIP: add notes for missing persistence/backup
TODO:
* Look at for more inspiration https://github.com/nix-community/impermanence/pull/108
* Do home-manager
* Common files https://github.com/nix-community/impermanence/issues/10
* Useful config: f77271b249/system/modules/impermanence.nix
2024-11-28 20:29:29 +00:00

35 lines
666 B
Nix

# A nice UI for various torrent clients
{ config, lib, ... }:
let
cfg = config.my.services.flood;
in
{
options.my.services.flood = with lib; {
enable = mkEnableOption "Flood UI";
port = mkOption {
type = types.port;
default = 9092;
example = 3000;
description = "Internal port for Flood UI";
};
};
config = lib.mkIf cfg.enable {
services.flood = {
enable = true;
inherit (cfg) port;
};
my.services.nginx.virtualHosts = {
flood = {
inherit (cfg) port;
};
};
# FIXME: persistence?
# NOTE: unfortunately flood does not log connection failures for fail2ban
};
}