1
Files
flake-homelab/ServeNix/services/TEMPLATE.nix
2023-09-01 11:40:07 +02:00

28 lines
392 B
Nix

{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.NAME = {
image = "";
autoStart = true;
dependsOn = [];
ports = [];
volumes = [];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--restart=always" # Conflicts with NixOS' default of using --rm
];
};
}