-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
267 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,264 @@ | ||
{ config, pkgs, lib, ... }: | ||
|
||
let | ||
cfg = config.services.porn-vault; | ||
configFormat = pkgs.formats.json { }; | ||
inherit (lib) | ||
mkIf | ||
mkEnableOption | ||
mkPackageOption | ||
mkOption | ||
getExe | ||
types | ||
; | ||
in | ||
{ | ||
options = { | ||
services.porn-vault = { | ||
enable = lib.mkEnableOption "Porn-Vault"; | ||
|
||
package = lib.mkPackageOption pkgs "porn-vault" { }; | ||
|
||
autoStart = lib.mkOption { | ||
type = lib.types.bool; | ||
default = false; | ||
description = '' | ||
Whether to start porn-vault automatically. | ||
''; | ||
}; | ||
|
||
port = lib.mkOption { | ||
type = lib.types.port; | ||
default = 3000; | ||
description = '' | ||
Which port Porn-Vault will use. | ||
''; | ||
}; | ||
|
||
openFirewall = lib.mkOption { | ||
type = lib.types.bool; | ||
default = false; | ||
description = '' | ||
Whether to open the default ports in the firewall for porn-vault. | ||
''; | ||
}; | ||
|
||
config = { | ||
enable = mkEnableOption "Porn-Vault configuration"; | ||
settings = mkOption { | ||
type = configFormat.type; | ||
description = '' | ||
Configuration for Porn-Vault. The attributes are serialized to JSON in config.json. | ||
See https://gitlab.com/porn-vault/porn-vault/-/blob/dev/config.example.json | ||
''; | ||
default = { | ||
auth = { | ||
password = null; | ||
}; | ||
binaries = { | ||
ffmpeg = "ffmpeg"; | ||
ffprobe = "ffprobe"; | ||
izzyPort = 8000; | ||
imagemagick = { | ||
convertPath = "convert"; | ||
montagePath = "montage"; | ||
identifyPath = "identify"; | ||
}; | ||
}; | ||
import = { | ||
images = [ | ||
{ | ||
path = "/media/porn-vault/images"; | ||
include = []; | ||
exclude = []; | ||
extensions = [ | ||
".jpg" | ||
".jpeg" | ||
".png" | ||
".gif" | ||
]; | ||
enable = true; | ||
} | ||
]; | ||
videos = [ | ||
{ | ||
path = "/media/porn-vault/videos"; | ||
include = []; | ||
exclude = []; | ||
extensions = [ | ||
".mp4" | ||
".mov" | ||
".webm" | ||
]; | ||
enable = true; | ||
} | ||
]; | ||
scanInterval = 10800000; | ||
}; | ||
log = { | ||
level = "debug"; | ||
maxSize = "20m"; | ||
maxFiles = "5"; | ||
writeFile = [ | ||
{ | ||
level = "debug"; | ||
prefix = "errors-"; | ||
silent = false; | ||
} | ||
]; | ||
}; | ||
matching = { | ||
applyActorLabels = [ | ||
"event:actor:create" | ||
"event:actor:find-unmatched-scenes" | ||
"plugin:actor:create" | ||
"event:scene:create" | ||
"plugin:scene:create" | ||
"event:image:create" | ||
"plugin:marker:create" | ||
"event:marker:create" | ||
]; | ||
applySceneLabels = true; | ||
applyStudioLabels = [ | ||
"event:studio:create" | ||
"event:studio:find-unmatched-scenes" | ||
"plugin:studio:create" | ||
"event:scene:create" | ||
"plugin:scene:create" | ||
]; | ||
extractSceneActorsFromFilepath = true; | ||
extractSceneLabelsFromFilepath = true; | ||
extractSceneMoviesFromFilepath = true; | ||
extractSceneStudiosFromFilepath = true; | ||
matcher = { | ||
type = "word"; | ||
options = { | ||
ignoreSingleNames = false; | ||
ignoreDiacritics = true; | ||
enableWordGroups = true; | ||
wordSeparatorFallback = true; | ||
camelCaseWordGroups = true; | ||
overlappingMatchPreference = "longest"; | ||
groupSeparators = [ | ||
"[\\s',()[\\]{}*\\.]" | ||
]; | ||
wordSeparators = [ | ||
"[-_]" | ||
]; | ||
filepathSeparators = [ | ||
"[/\\\\&]" | ||
]; | ||
}; | ||
}; | ||
matchCreatedActors = true; | ||
matchCreatedStudios = true; | ||
matchCreatedLabels = true; | ||
}; | ||
persistence = { | ||
backup = { | ||
enable = true; | ||
maxAmount = 10; | ||
}; | ||
libraryPath = "/media/porn-vault/lib"; | ||
}; | ||
plugins = { | ||
allowActorThumbnailOverwrite = false; | ||
allowMovieThumbnailOverwrite = false; | ||
allowSceneThumbnailOverwrite = false; | ||
allowStudioThumbnailOverwrite = false; | ||
createMissingActors = false; | ||
createMissingLabels = false; | ||
createMissingMovies = false; | ||
createMissingStudios = false; | ||
events = { | ||
actorCreated = []; | ||
actorCustom = []; | ||
sceneCreated = []; | ||
sceneCustom = []; | ||
movieCustom = []; | ||
studioCreated = []; | ||
studioCustom = []; | ||
}; | ||
register = {}; | ||
markerDeduplicationThreshold = 5; | ||
}; | ||
processing = { | ||
generatePreviews = true; | ||
readImagesOnImport = false; | ||
generateImageThumbnails = true; | ||
}; | ||
server = { | ||
https = { | ||
certificate = ""; | ||
enable = false; | ||
key = ""; | ||
}; | ||
}; | ||
transcode = { | ||
hwaDriver = null; | ||
vaapiDevice = "/dev/dri/renderD128"; | ||
h264 = { | ||
preset = "veryfast"; | ||
crf = 23; | ||
}; | ||
webm = { | ||
deadline = "realtime"; | ||
cpuUsed = 3; | ||
crf = 31; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
environment.systemPackages = [ cfg.package ]; | ||
|
||
systemd = { | ||
services = { | ||
porn-vault = { | ||
description = "Porn-Vault server"; | ||
environment = { | ||
PV_CONFIG_FOLDER = "/etc/porn-vault"; | ||
NODE_ENV = "production"; | ||
DATABASE_NAME = "production"; | ||
PORT = toString cfg.port; | ||
}; | ||
serviceConfig = { | ||
ExecStart = (getExe cfg.package); | ||
# Hardening options | ||
CapabilityBoundingSet = [ "CAP_SYS_NICE" ]; | ||
AmbientCapabilities = [ "CAP_SYS_NICE" ]; | ||
LockPersonality = true; | ||
NoNewPrivileges = true; | ||
PrivateTmp = true; | ||
ProtectControlGroups = true; | ||
ProtectKernelLogs = true; | ||
ProtectKernelModules = true; | ||
ProtectKernelTunables = true; | ||
ProtectSystem = true; | ||
RestrictNamespaces = true; | ||
RestrictSUIDSGID = true; | ||
Restart = "on-failure"; | ||
RestartSec = 0; | ||
}; | ||
wantedBy = mkIf cfg.autoStart [ "multi-user.target" ]; | ||
}; | ||
}; | ||
}; | ||
|
||
environment.etc = mkIf cfg.config.enable { | ||
"porn-vault/config.json".source = configFormat.generate "config.json" cfg.config.settings; | ||
}; | ||
|
||
networking.firewall = lib.mkIf cfg.openFirewall { | ||
allowedTCPPorts = [ cfg.port ]; | ||
allowedUDPPorts = [ cfg.port ]; | ||
}; | ||
}; | ||
|
||
meta.maintainers = with lib.maintainers; [ luNeder ]; | ||
} |