mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 05:12:34 +02:00
72e4be86eb
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
6 lines
243 B
Nix
6 lines
243 B
Nix
# Docker is a containerization platform that allows you to run applications in isolated environments called containers.
|
|
{config, ...}: {
|
|
virtualisation.docker.enable = true;
|
|
users.users."${config.var.username}".extraGroups = ["docker"];
|
|
}
|