summaryrefslogtreecommitdiff
path: root/modules/virtualisation.nix
blob: 442cbf7da156a8a86422fc8b5dc21c0c647f83e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  virtualisation = {
    docker = {
      enable = true;
      storageDriver = "btrfs";
      enableOnBoot = false;

      rootless = {
        enable = true;
        setSocketVariable = true;
      };
    };

    libvirtd.enable = true;
  };
}