haccfiles/services/unifi.nix
2021-08-23 19:32:02 +00:00

11 lines
177 B
Nix

{ config, lib, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
services.unifi = {
enable = true;
openPorts = true;
dataDir = "/persist/var/lib/unifi";
};
}