mirror of
https://github.com/blahai/nyx.git
synced 2025-06-07 20:23:02 -04:00
yeet theia and quickshell
This commit is contained in:
parent
31628af7c6
commit
fde31a4f1b
13 changed files with 60 additions and 608 deletions
|
@ -1,7 +1,44 @@
|
|||
{pkgs, ...}: {
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
dataDir = "/mnt/zootfs/Media/jellyfin";
|
||||
services = {
|
||||
jellyfin = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
dataDir = "/mnt/zootfs/Media/jellyfin";
|
||||
package = pkgs.jellyfin;
|
||||
user = "jellyfin";
|
||||
group = "jellyfin";
|
||||
};
|
||||
|
||||
jellyseerr = {
|
||||
enable = true;
|
||||
port = 5055;
|
||||
openFirewall = true;
|
||||
package = pkgs.jellyseerr;
|
||||
};
|
||||
|
||||
sonarr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
dataDir = "/mnt/zootfs/Media/sonarr";
|
||||
package = pkgs.sonarr;
|
||||
user = "jellyfin";
|
||||
group = "jellyfin";
|
||||
};
|
||||
|
||||
prowlarr = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
package = pkgs.prowlarr;
|
||||
};
|
||||
};
|
||||
# This bullshittery is cuz sonarr v4 still uses
|
||||
# dotnet 6 which is LTS and is marked broken in
|
||||
# nixpkgs but they are moving to 8 in v5 which
|
||||
# will happen eventually (not anytime soon?)
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"aspnetcore-runtime-6.0.36"
|
||||
"aspnetcore-runtime-wrapped-6.0.36"
|
||||
"dotnet-sdk-6.0.428"
|
||||
"dotnet-sdk-wrapped-6.0.428"
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue