chore: remove docker because horrible in nix

This commit is contained in:
Ahwx 2024-10-07 21:30:30 +02:00
parent 76bfe183fa
commit e145e6b7d6

View file

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