System/modules/docker.nix

11 lines
238 B
Nix
Raw Normal View History

2021-12-20 13:37:26 -05:00
{ config, pkgs, unstable, ... }:
{
# Enable docker and use unstable version
virtualisation.docker = {
enable = true;
package = unstable.docker;
# Automatically prune to keep things lean
autoPrune.enable = true;
};
}