nixos/docker.nix

8 lines
146 B
Nix
Raw Normal View History

2024-06-05 23:04:40 +01:00
{ pkgs, ... }:
{
virtualisation.docker.enable = true;
virtualisation.docker.rootless = {
enable = true;
setSocketVariable = true;
};
}