Files
cyper-nix/nixos/roles/filebrowser.nix
2026-04-14 14:27:38 +02:00

20 lines
323 B
Nix

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