1

Services/Pulse: Init at v4.35.0

This commit is contained in:
2025-12-01 17:56:27 +01:00
parent 2903639dc0
commit 35c1419b4d
2 changed files with 47 additions and 0 deletions

46
system/services/pulse.nix Normal file
View File

@ -0,0 +1,46 @@
{
config,
lib,
pkgs,
...
}: let
pulseVersion = "4.35.0";
in {
virtualisation.oci-containers.containers = {
pulse = {
image = "rcourtman/pulse:${pulseVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
# "7655:7655"
];
volumes = [
"pulse_data:/data"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}

View File

@ -20,6 +20,7 @@
../services/adguard.nix
../services/nginx-proxy-manager.nix
../services/portainer.nix
../services/pulse.nix
../services/whats-up-docker.nix
];