feat: add kodi

This commit is contained in:
Ashhhleyyy 2023-12-18 13:40:36 +00:00
parent 1cf35a3ffd
commit 80b46c6d23
Signed by: ash
GPG key ID: 83B789081A0878FB
2 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,7 @@
../../common/generic-uefi.nix
../../common/tailscale.nix
../../common/tpm.nix
../../roles/kodi.nix
../../roles/podman.nix
./hardware-config.nix
];

9
roles/kodi.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }: {
services.xserver.desktopManager.kodi = {
enable = true;
package = pkgs.kodi.withPackages (p: with p; [
netflix
youtube
]);
};
}