From 7762b428d0070b24b6177e67a4c64f834c3a3d8f Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Thu, 10 Jun 2021 12:13:15 +0200 Subject: [PATCH] fix(kodi): remove advanced-launcher --- services/kodi.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/services/kodi.nix b/services/kodi.nix index 48c0900..a523656 100644 --- a/services/kodi.nix +++ b/services/kodi.nix @@ -15,10 +15,8 @@ environment.systemPackages = [ (pkgs.kodi.override { - plugins = with pkgs.kodiPlugins; [ - advanced-launcher - pkgs.nur.repos.marzipankaiser.kodiPlugins.netflix - ]; + plugins = with pkgs.kodiPlugins; + [ pkgs.nur.repos.marzipankaiser.kodiPlugins.netflix ]; }) ]; }