nixos-server/docker.nix
2026-01-24 16:43:58 +01:00

16 lines
398 B
Nix

{ pkgs, ... }: {
virtualisation.docker.enable = true;
hardware.nvidia-container-toolkit.enable = true;
systemd.user.services.force-start-docker-containers = {
description = "docker stupid, so this starts the docker composes";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = "/home/botserver/scripts/docker/up.sh";
Type = "oneshot";
};
};
}