mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
16eb64de6e
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"];
|
|
}
|