feat: adds liv.town

This commit is contained in:
Ahwx 2024-07-17 03:19:53 +02:00
parent 2093da9d90
commit a77137731d

View file

@ -0,0 +1,22 @@
{ ... }:
{
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
# enableNvidia = true;
};
user.users.liv = {
extraGroups = [ "docker" ];
};
virtualisation.oci-containers = {
backend = "docker";
containers."livdottown" = {
image = "ghcr.io/ahwxorg/liv.town:latest";
ports = [
"4321:4321/tcp"
];
};
};
}