mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
10 lines
187 B
Nix
10 lines
187 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
virtualisation.docker.enable = true;
|
|
users.users."${config.var.username}".extraGroups = ["docker"];
|
|
environment.systemPackages = [pkgs.lazydocker];
|
|
}
|