mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-08 13:33:02 -04:00
21 lines
311 B
Nix
21 lines
311 B
Nix
{ NAME }:
|
|
{ ... }:
|
|
{
|
|
virtualisation = {
|
|
docker = {
|
|
enable = true;
|
|
};
|
|
};
|
|
environment = {
|
|
sessionVariables = {
|
|
# DOCKER_HOST = "unix://$XDG_RUNTIME_DIR/docker.sock";
|
|
};
|
|
};
|
|
users = {
|
|
users = {
|
|
"${NAME}" = {
|
|
extraGroups = [ "docker" ];
|
|
};
|
|
};
|
|
};
|
|
}
|