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

12 lines
181 B
Nix

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