nix-configurations/hosts/lkk-nix-1/services/docker.nix

13 lines
209 B
Nix

{ config, pkgs, ... }:
{
virtualisation.docker = {
enable = true;
enableOnBoot = true;
storageDrive = "btrfs";
rootless = {
enable = true;
setSocketVariable = true;
};
};
}