nixos-config/nixos/programs/docker.nix

13 lines
208 B
Nix
Raw Normal View History

2023-08-22 10:50:50 +05:00
{ config, ... }:
{
virtualisation.docker = {
enable = true;
storageDriver = "btrfs";
autoPrune.enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
}