Skip to content

Latest commit

 

History

History
executable file
·
20 lines (16 loc) · 303 Bytes

docker.md

File metadata and controls

executable file
·
20 lines (16 loc) · 303 Bytes

Docker

{ config, pkgs, lib, assets, ... }:
{
  virtualisation.docker = {
    enable = true;
    storageDriver = "btrfs";
  };

  environment.systemPackages = with pkgs; [
    docker-compose
  ];

  users.users."dpd-".extraGroups = [
    "docker"
  ];
}