11 lines
232 B
Nix
11 lines
232 B
Nix
{ lib, pkgs, inputs, ... }:
|
|
let
|
|
browser = lib.getExe pkgs.firefox;
|
|
in
|
|
{
|
|
xdg.desktopEntries.jellyfin = {
|
|
name = "Jellyfin";
|
|
exec = "${browser} --no-remote -P jellyfin --new-window --kiosk https://jellyfin.smayzy.ovh";
|
|
};
|
|
}
|