Files
cyper-nix/nixos/roles/filebrowser.nix
2026-04-12 23:40:13 +02:00

20 lines
322 B
Nix

{ ... }:
{
services.filebrowser = {
enable = true;
settings = {
port = 8080;
address = "0.0.0.0";
baseURL = "/filebrowser";
root = "/storage";
};
# If you want the port opened in the firewall:
openFirewall = true;
};
#networking.firewall.allowedTCPPorts = [ 8080 ];
}