vert
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ config, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./apps/arrs
|
||||
@@ -10,6 +10,7 @@
|
||||
./apps/paperless
|
||||
./apps/paperless-ai
|
||||
./apps/traefik
|
||||
./apps/vert
|
||||
./apps/wyoming
|
||||
../../modules
|
||||
|
||||
|
||||
13
hosts/nas/apps/vert/default.nix
Normal file
13
hosts/nas/apps/vert/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
virtualisation.oci-containers.containers.vert = {
|
||||
autoStart = true;
|
||||
image = "vert-sh/vert";
|
||||
ports = [ "9876:80" ];
|
||||
environment = {
|
||||
PUID = config.users.users.nix-apps.uid;
|
||||
PGID = config.users.groups.jallen-nas.gid;
|
||||
TZ = "America/Chicago";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user