aboutsummaryrefslogtreecommitdiff
path: root/system/virtualisation.nix
blob: c68c2fef0eb656f8c054cca035f4dd57abedb313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{pkgs, ...}: {
  virtualisation.docker = {
    enable = true;
    autoPrune.enable = true;
    package = pkgs.unstable.docker_29;
  };
  virtualisation.oci-containers = {
    backend = "docker";
  };

  users.extraGroups.docker.members = ["mun"];
}