17 lines
286 B
Nix
17 lines
286 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
virtualisation.podman.enable = true;
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
services.unifi-os-server = {
|
|
enable = true;
|
|
uosSystemIP = "10.0.0.10";
|
|
openFirewallUiPort = true;
|
|
openFirewallServicePorts = true;
|
|
};
|
|
}
|