1

Compare commits

...

2 Commits

Author SHA1 Message Date
ad05cdf7b5 Services/Fileflows: Init with version 25.10 2025-11-08 20:47:01 +01:00
b895c3a1ff Home: Add handbrake 2025-11-08 20:46:50 +01:00
3 changed files with 58 additions and 0 deletions

View File

@ -372,6 +372,7 @@
tidal-hifi tidal-hifi
tidal-dl-ng tidal-dl-ng
picard picard
handbrake
# Office # Office
kdePackages.wacomtablet # For xournalpp/krita kdePackages.wacomtablet # For xournalpp/krita
@ -457,6 +458,7 @@
enableFishIntegration = config.modules.fish.enable; enableFishIntegration = config.modules.fish.enable;
}; };
# TODO: Module
fastfetch = { fastfetch = {
enable = true; enable = true;

View File

@ -24,6 +24,7 @@
# General services # General services
../services/authelia.nix ../services/authelia.nix
../services/fileflows.nix
../services/gitea.nix ../services/gitea.nix
../services/gitea-runner.nix ../services/gitea-runner.nix
../services/immich.nix ../services/immich.nix

View File

@ -0,0 +1,55 @@
{
config,
lib,
pkgs,
...
}: let
FileFlowsVersion = "25.10";
in {
virtualisation.oci-containers.containers = {
FileFlows = {
image = "revenz/fileflows:${FileFlowsVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [];
volumes = [
"fileflows_temp:/temp"
"fileflows_data:/app/Data"
"fileflows_logs:/app/Logs"
"/media/Movie:/media/movies"
"/media/Show:/media/tvshows"
"/var/run/docker.sock:/var/run/docker.sock:ro"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
environmentFiles = [
config.sops.templates."FileFlows_secrets.env".path
];
extraOptions = [
"--privileged"
"--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}