mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-06 16:12:33 +02:00
2890b49b82
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
6 lines
179 B
Nix
6 lines
179 B
Nix
{config, pkgs, ...}: {
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.docker.package = pkgs.docker_29;
|
|
users.users."${config.var.username}".extraGroups = ["docker"];
|
|
}
|