22 lines
386 B
Nix
22 lines
386 B
Nix
|
{
|
||
|
nglib,
|
||
|
nixpkgs,
|
||
|
...
|
||
|
}:
|
||
|
nglib.makeSystem {
|
||
|
inherit nixpkgs;
|
||
|
system = "x86_64-linux";
|
||
|
name = "nixng-jellyseerr";
|
||
|
|
||
|
config = {pkgs, ...}: {
|
||
|
dinit.enable = true;
|
||
|
init.services.jellyseerr.shutdownOnExit = true;
|
||
|
|
||
|
services.jellyseerr = {
|
||
|
enable = true;
|
||
|
package = pkgs.callPackage ./jellyseerr-2.1.0.nix {};
|
||
|
configDir = "/app/config";
|
||
|
};
|
||
|
};
|
||
|
}
|