This commit is contained in:
mjallen18
2025-04-15 21:19:12 -05:00
parent da782ab76d
commit 3ebbbb7f90
7 changed files with 11 additions and 8 deletions

View File

@@ -5,6 +5,7 @@
# ./apps/crowdsec
./apps/jellyfin
./apps/jellyseerr
./apps/netbootxyz
./apps/nextcloud
./apps/ollama
./apps/paperless
@@ -22,8 +23,7 @@
free-games-claimer.enable = true;
manyfold.enable = true;
netbootxyz = {
enable = true;
port = "4000";

View File

@@ -17,6 +17,8 @@ in
PUID = cfg.puid;
PGID = cfg.pgid;
TZ = cfg.timeZone;
WEB_APP_PORT = cfg.port;
NGINX_PORT = cfg.port2;
};
};
};

View File

@@ -2,11 +2,11 @@
{
virtualisation.oci-containers.containers.vert = {
autoStart = true;
image = "vert-sh/vert";
image = "ghcr.io/vert-sh/vert";
ports = [ "9876:80" ];
environment = {
PUID = config.users.users.nix-apps.uid;
PGID = config.users.groups.jallen-nas.gid;
PUID = toString config.users.users.nix-apps.uid;
PGID = toString config.users.groups.jallen-nas.gid;
TZ = "America/Chicago";
};
};

View File

@@ -13,6 +13,8 @@ let
10300
8127
9980 # onlyoffice
4000 # netbootxyz
4080 # netbootxyz
];
in
{

View File

@@ -5,7 +5,6 @@
./apps/free-games-claimer
./apps/manyfold
./apps/mongodb
./apps/netbootxyz
./apps/tdarr
./apps/your-spotify
];

View File

@@ -1,9 +1,9 @@
{ ... }:
{
specialisation.cosmic.configuration = {
# specialisation.cosmic.configuration = {
services = {
desktopManager.cosmic.enable = true;
displayManager.cosmic-greeter.enable = true;
};
};
# };
}