13 lines
185 B
Nix
13 lines
185 B
Nix
{ config, lib, ... }:
|
|
{
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
rootless = {
|
|
enable = true;
|
|
setSocketVariable = true;
|
|
};
|
|
};
|
|
|
|
users.groups.docker = { };
|
|
}
|