more organization, or maybe disorganization...

This commit is contained in:
mjallen18
2024-02-25 18:21:21 -06:00
parent f0e5baea4b
commit cd4a68b513
30 changed files with 560 additions and 447 deletions

View File

@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
# dashy
virtualisation.oci-containers.containers."dashy" = {
autoStart = true;
image = " lissy93/dashy:latest";
ports = [ "8888:80" ];
volumes = [
"/mnt/ssd/nix-app-data/dashy/conf.yaml:/app/public/conf.yaml"
];
environment = {
PUID = "911";
PGID = "1000";
TZ = "America/Chicago";
};
};
}