Files
nixos/system/modules/docker.nix
T
2025-07-14 15:12:21 +02:00

9 lines
162 B
Nix

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