From 144bd0d5f528837f6181603e84dc1f2ddad34ddf Mon Sep 17 00:00:00 2001 From: schweby Date: Wed, 3 Nov 2021 15:36:03 +0100 Subject: [PATCH] remove services/unifi no longer needed --- hosts/parsons/configuration.nix | 1 - services/unifi.nix | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100644 services/unifi.nix diff --git a/hosts/parsons/configuration.nix b/hosts/parsons/configuration.nix index fb75f26..bff67ea 100644 --- a/hosts/parsons/configuration.nix +++ b/hosts/parsons/configuration.nix @@ -19,7 +19,6 @@ ../../services/gitlab.nix ../../services/nginx-pages.nix ../../services/gitlab-runner.nix - ../../services/unifi.nix ../../services/lantifa.nix ../../services/vaultwarden.nix diff --git a/services/unifi.nix b/services/unifi.nix deleted file mode 100644 index bf7ea5e..0000000 --- a/services/unifi.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - nixpkgs.config.allowUnfree = true; - services.unifi = { - enable = true; - openPorts = true; - dataDir = "/persist/var/lib/unifi"; - }; -}