Files
nix-config/nas-apps/swag.nix
mjallen18 4b15be1b8d nas fixes
2024-02-18 19:24:34 -06:00

21 lines
475 B
Nix

{ config, pkgs, ... }:
{
# Swag
virtualisation.oci-containers.containers."swag" = {
autoStart = true;
image = "linuxserver/swag";
ports = [ "80:80" "443:443" ];
volumes = [
"/mnt/Safe\ SSD/ssd_app_data/swag:/config"
];
environment = {
PGID = "1000";
PUID = "1000";
TZ = "America/Chicago";
URL = "mjallen.dev";
VALIDATION = "http";
SUBDOMAINS = "jellyfin,hass,cloud,jellyseer";
};
};
}