NixOS/home/programs/jellyfin.nix

13 lines
164 B
Nix
Raw Permalink Normal View History

{
config,
lib,
pkgs,
...
}:
2024-06-12 18:09:56 +07:00
let
cfg = config.profile.jellyfin;
in
{
config = lib.mkIf cfg.enable { home.packages = [ pkgs.jellyfin-media-player ]; };
2024-06-12 18:09:56 +07:00
}