minus: Add jellyfin

This commit is contained in:
traxys 2024-04-01 18:36:28 +02:00
parent 2a3e19337e
commit dbc3cdba39

View file

@ -1,6 +1,22 @@
{config, ...}: {
{
config,
pkgs,
...
}: {
home.username = "${config.extraInfo.username}";
home.homeDirectory = "/home/${config.extraInfo.username}";
home.packages = with pkgs; [
jellyfin-media-player
];
home.sessionVariables = {
SDL_VIDEODRIVER = "wayland";
QT_QPA_PLATFORM = "wayland";
MOZ_ENABLE_WAYLAND = "1";
NIXOS_OZONE_WL = 1;
BROWSER = "firefox";
};
home.stateVersion = "23.11";
}