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

13 lines
209 B
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{ config, pkgs, ... }:
{
virtualisation.docker = {
enable = true;
enableOnBoot = true;
storageDrive = "btrfs";
rootless = {
enable = true;
setSocketVariable = true;
};
2022-12-30 12:05:46 +00:00
};
}