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

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