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

{
  virtualisation = {
    docker.enable = true;
    libvirtd.enable = true;
  };

  users.users.${user}.extraGroups = [ "docker" ];
}