1

Add ThinkNix config

This commit is contained in:
2024-04-04 18:18:28 +02:00
parent 1c1022f5c9
commit 385374e15e
7 changed files with 570 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.NAME = {
image = "";
autoStart = true;
dependsOn = [
# "pihole"
];
ports = [];
volumes = [];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
# NVIDIA_VISIBLE_DEVICES = "all";
# NVIDIA_DRIVER_CAPABILITIES = "all";
};
extraOptions = [
# "--gpus=all"
"--net=behind-nginx"
];
};
}