From daae2195f35e890e796d0591d7eae2c9ca22e3c4 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Wed, 4 Dec 2024 23:03:49 +0100 Subject: [PATCH] use different user for the jellyfin frontend so it can be a regular user --- nixos/hosts/wheatley/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/hosts/wheatley/configuration.nix b/nixos/hosts/wheatley/configuration.nix index 8c74d0d..10981e6 100644 --- a/nixos/hosts/wheatley/configuration.nix +++ b/nixos/hosts/wheatley/configuration.nix @@ -76,7 +76,8 @@ services.jellyfin.enable = true; # Add stremio kiosk on wayland :) - services.cage.user = "jellyfin"; + users.extraUsers.jellyfinmediaplayer.isNormalUser = true; + services.cage.user = "jellyfinmediaplayer"; services.cage.program = "${pkgs.jellyfin-media-player}/bin/jellyfinmediaplayer"; services.cage.enable = true;