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

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