diff --git a/users/hashcube/programs/default.nix b/users/hashcube/programs/default.nix index 230d835..765d739 100644 --- a/users/hashcube/programs/default.nix +++ b/users/hashcube/programs/default.nix @@ -12,5 +12,6 @@ ./obs-studio.nix ./nixvim.nix + ./kodi.nix ]; } diff --git a/users/hashcube/programs/kodi.nix b/users/hashcube/programs/kodi.nix new file mode 100644 index 0000000..4d0081c --- /dev/null +++ b/users/hashcube/programs/kodi.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +{ + programs.kodi = { + enable = true; + package = pkgs.kodi-wayland.withPackages (exts: with exts; [ + youtube + ]); + }; +}