aboutsummaryrefslogtreecommitdiff
path: root/system/virtualisation.nix
blob: 8f76b0ac232948c2954414e6353152e9c2637bb4 (plain)
1
2
3
4
5
6
7
8
9
10
{...}: {
  virtualisation.docker = {
    enable = true;
    storageDriver = "btrfs";
    rootless = {
      enable = true;
      setSocketVariable = true;
    };
  };
}