diff --git a/modules/services/liv-town.nix b/modules/services/liv-town.nix deleted file mode 100644 index 90a76f5..0000000 --- a/modules/services/liv-town.nix +++ /dev/null @@ -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" - ]; - }; - }; -}