mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-23 07:10:59 +01:00
minus: Add jellyfin
This commit is contained in:
parent
2a3e19337e
commit
dbc3cdba39
1 changed files with 17 additions and 1 deletions
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue