feat: Added jellyfin reverse proxy

This commit is contained in:
uttarayan21
2025-07-13 05:02:55 +05:30
parent fa718f5618
commit 71228dd717
19 changed files with 173 additions and 64 deletions

View File

@@ -0,0 +1,3 @@
{pkgs, ...}: {
home.packages = [pkgs.ddcbacklight];
}

View File

@@ -31,6 +31,8 @@
./zoxide.nix
./mpris-scrobbler.nix
./omnix.nix
# ./ddcbacklight.nix
./yt-dlp.nix
# ./magika.nix
# ./ncmpcpp.nix
# ./neomutt.nix
@@ -66,35 +68,13 @@
sd
tldr
vcpkg-tool
yt-dlp
]
++ lib.optionals (!device.isServer) [
clang
cmake
d2
devenv
go
hasklig
jujutsu
monaspace
nerd-fonts.fira-code
nerd-fonts.hasklug
nerd-fonts.symbols-only
qmk
ttyper
yarn
]
++ lib.optionals device.isLinux [
dig
gptfdisk
handlr-regex
handlr-xdg
lsof
ncpamixer
rr
sbctl
usbutils
ddcbacklight
]
++ lib.optionals device.isLinux []
++ lib.optionals device.isDarwin [];
}

3
home/programs/sbctl.nix Normal file
View File

@@ -0,0 +1,3 @@
{pkgs, ...}: {
home.packages = [pkgs.sbctl];
}

3
home/programs/yt-dlp.nix Normal file
View File

@@ -0,0 +1,3 @@
{pkgs, ...}: {
home.packages = [pkgs.yt-dlp];
}