nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 078803a5930a720703a8f09c20d74e2488779805
parent 2e45172e20ba742baaef68ac844b2c98e35536a2
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Mon,  1 Jun 2026 16:17:13 +0100

Prefer kodi-wayland over x11 and strip out plugins

Diffstat:
Mcommon/kodi.nix | 8+-------
Mhome/kodi.nix | 4++--
2 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/common/kodi.nix b/common/kodi.nix @@ -3,13 +3,7 @@ { # Package and Addons environment.systemPackages = with pkgs; [ - (kodi-wayland.withPackages (kodiPkgs: with kodiPkgs; [ - a4ksubtitles - inputstream-adaptive - somafm - upnext - youtube - ])) + kodi-wayland ]; # Firewall rules diff --git a/home/kodi.nix b/home/kodi.nix @@ -1,4 +1,4 @@ -{ vars, ... }: +{ vars, pkgs, ... }: { programs.kodi = { @@ -60,7 +60,7 @@ # Launch Kodi via Hyprland wayland.windowManager.hyprland = { settings = { - "exec-once" = "kodi"; + "exec-once" = "${pkgs.kodi-wayland}/bin/kodi-standalone -fullscreen"; }; }; }