mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +02:00
16 lines
304 B
Nix
16 lines
304 B
Nix
# { lib, ... }:
|
|
{
|
|
environment.persistence."/persist".directories = [
|
|
{
|
|
directory = "/var/lib/unifi";
|
|
mode = "0700";
|
|
user = "unifi";
|
|
group = "unifi";
|
|
}
|
|
];
|
|
|
|
# services.unifi.enable = true;
|
|
|
|
# Don't autostart.
|
|
# systemd.services.unifi.wantedBy = lib.mkForce [ ];
|
|
}
|