14 lines
419 B
Nix
14 lines
419 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
# Note: add privileged users to docker group for access
|
|
with lib;
|
|
|
|
mkIf (elem "docker" config.machine.services) {
|
|
virtualisation.docker= {
|
|
enable = true;
|
|
# Disable live restore as it tends to delay/block system shutdown
|
|
liveRestore = false;
|
|
};
|
|
environment.systemPackages = with pkgs; [ docker-compose docker-machine ];
|
|
### Docker Image stuff will probably follow here
|
|
}
|