forest/roles/kodi.nix

10 lines
181 B
Nix
Raw Permalink Normal View History

2023-12-18 13:40:36 +00:00
{ config, pkgs, ... }: {
services.xserver.desktopManager.kodi = {
enable = true;
package = pkgs.kodi.withPackages (p: with p; [
netflix
youtube
]);
};
}