NixOS/home/programs/jellyfin.nix

12 lines
180 B
Nix
Raw Normal View History

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