Files
dotfiles/system-modules/kodi.nix
Lennart J. Kurzweg (Nx2) 7e07ae4bc8 kodi
2024-05-29 22:17:48 +02:00

13 lines
245 B
Nix

{ pkgs, lib, host, ... }:
lib.mkIf (host == "NxACE")
{
services.xserver.desktopManager.kodi = {
enable = true;
};
services.cage = {
user = "kodi";
program = "${pkgs.kodi-wayland}/bin/kodi-standalone";
enable = true;
};
}