about summary refs log tree commit diff
path: root/modules/virtualisation/default.nix
blob: c81b3d44e58b30ffd28723ee41cc0f774e758dcf (plain) (blame)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:

{
  virtualisation.docker.enable = true;
  users.users.baitinq.extraGroups = [ "docker" ];

  virtualisation.libvirtd.enable = true;
}