Files
nix-config/nas-apps/swag.nix
2024-02-21 13:47:45 -06:00

22 lines
515 B
Nix

{ config, pkgs, ... }:
{
# Swag
virtualisation.oci-containers.containers."swag" = {
autoStart = true;
image = "linuxserver/swag";
ports = [ "80:80" "443:443" ];
volumes = [
"/mnt/ssd/ssd_app_data/swag:/config"
];
environment = {
PGID = "1000";
PUID = "1000";
EMAIL = "jalle008@proton.me";
TZ = "America/Chicago";
URL = "mjallen.dev";
VALIDATION = "http";
SUBDOMAINS = "jellyfin,hass,cloud,office,jellyseerr";
};
};
}