Files
nix-config/users/guest/common/optional/graphical/jellyfin.nix
Jordan Holt af304e3efe
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m21s
users/guest: add tuigreet as temp launcher
2025-10-26 14:09:12 +00:00

21 lines
334 B
Nix

{
pkgs,
...
}:
{
home.packages = with pkgs; [
gamescope
jellyfin-media-player
];
home.persistence."/state".directories = [
".cache/jellyfin.org"
];
home.persistence."/persist".directories = [
".config/jellyfin.org"
".local/share/jellyfinmediaplayer"
".local/share/Jellyfin Media Player"
];
}