forked from hacc/haccfiles
11 lines
177 B
Nix
11 lines
177 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
services.unifi = {
|
||
|
enable = true;
|
||
|
openPorts = true;
|
||
|
dataDir = "/persist/var/lib/unifi";
|
||
|
};
|
||
|
}
|