add webapps

This commit is contained in:
smayzy 2025-06-23 19:44:08 +02:00
parent 640824d8e0
commit b37fd3c1f7
2 changed files with 11 additions and 0 deletions

View File

@ -3,6 +3,7 @@
{
imports =
[
./modules/home-manager/webapps.nix
];
home.username = "smayzy";

View File

@ -0,0 +1,10 @@
{ 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";
};
}