diff --git a/nixos/hosts/wheatley/configuration.nix b/nixos/hosts/wheatley/configuration.nix index 0a718a3..d5c257d 100644 --- a/nixos/hosts/wheatley/configuration.nix +++ b/nixos/hosts/wheatley/configuration.nix @@ -52,11 +52,24 @@ }; # Add stremio kiosk on wayland :) - users.extraUsers.stremio.isNormalUser = true; - services.cage.user = "stremio"; - services.cage.program = "${pkgs.stremio}/bin/stremio"; + users.extraUsers.kodi.isNormalUser = true; + services.cage.user = "kodi"; + services.cage.program = "${pkgs.kodi}/bin/kodi-standalone"; services.cage.enable = true; + environment.systemPackages = [ + (pkgs.kodi.withPackages (kodiPkgs: + with kodiPkgs; [ + steam-controller + indvidious + netflix + upnext + sponsorblock + sendtokodi + jellyfin + ])) + ]; + sops.secrets."protonvpn-priv-key".mode = "0440"; sops.secrets."protonvpn-priv-key".owner = config.users.users.root.name;