mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
15 lines
257 B
Nix
15 lines
257 B
Nix
{ NAME }: { ... }: {
|
|
virtualisation = {
|
|
docker = {
|
|
rootless = {
|
|
enable = true;
|
|
};
|
|
enable = true;
|
|
};
|
|
};
|
|
environment = {
|
|
sessionVariables = {
|
|
DOCKER_HOST = "unix://$XDG_RUNTIME_DIR/docker.sock";
|
|
};
|
|
};
|
|
}
|