feat: add kodi
This commit is contained in:
parent
1cf35a3ffd
commit
80b46c6d23
2 changed files with 10 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
../../common/generic-uefi.nix
|
../../common/generic-uefi.nix
|
||||||
../../common/tailscale.nix
|
../../common/tailscale.nix
|
||||||
../../common/tpm.nix
|
../../common/tpm.nix
|
||||||
|
../../roles/kodi.nix
|
||||||
../../roles/podman.nix
|
../../roles/podman.nix
|
||||||
./hardware-config.nix
|
./hardware-config.nix
|
||||||
];
|
];
|
||||||
|
|
9
roles/kodi.nix
Normal file
9
roles/kodi.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, ... }: {
|
||||||
|
services.xserver.desktopManager.kodi = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.kodi.withPackages (p: with p; [
|
||||||
|
netflix
|
||||||
|
youtube
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue