remove webapps
All checks were successful
nix flake show / show-flake (push) Successful in 29s

This commit is contained in:
smayzy 2025-07-28 17:21:11 +02:00
parent 39ab82ae47
commit b5a63b3cbd
3 changed files with 0 additions and 27 deletions

View File

@ -5,8 +5,6 @@
../../modules/home-manager/default.nix ../../modules/home-manager/default.nix
]; ];
smayzy.webapps.enable = true;
smayzy.lf.enable = true; smayzy.lf.enable = true;
smayzy.kitty.enable = true; smayzy.kitty.enable = true;

View File

@ -4,6 +4,5 @@
./wm/hyprland.nix ./wm/hyprland.nix
./terminal ./terminal
./lf ./lf
./webapps.nix
]; ];
} }

View File

@ -1,24 +0,0 @@
{
lib,
pkgs,
config,
...
}:
let
browser = lib.getExe pkgs.firefox;
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.webapps.enable = mkOption {
type = types.bool;
default = false;
description = "jellyfin webapp";
};
config = mkIf config.smayzy.webapps.enable {
xdg.desktopEntries.jellyfin = {
name = "Jellyfin";
exec = "${browser} --no-remote -P jellyfin --new-window --kiosk https://jellyfin.smayzy.ovh";
};
};
}