mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 03:12:09 +02:00
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"];
|
|
}
|