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/crowdsec
./apps/jellyfin ./apps/jellyfin
./apps/jellyseerr ./apps/jellyseerr
./apps/netbootxyz
./apps/nextcloud ./apps/nextcloud
./apps/ollama ./apps/ollama
./apps/paperless ./apps/paperless
@@ -22,8 +23,7 @@
free-games-claimer.enable = true; free-games-claimer.enable = true;
manyfold.enable = true; manyfold.enable = true;
netbootxyz = { netbootxyz = {
enable = true; enable = true;
port = "4000"; port = "4000";

View File

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

View File

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

View File

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

View File

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

View File

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