nixconfig/kodi/kodi.nix

20 lines
330 B
Nix
Raw Normal View History

2024-10-04 00:31:25 +00:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
(kodi.passthru.withPackages (
kodiPkgs: with kodiPkgs; [
certifi
controller-topology-project
inputstream-adaptive
invidious
keymap
mediathekview
sendtokodi
sponsorblock
youtube
]
))
];
}