mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
6d7ce9d202
Signed-off-by: Hadi <hadi@example.com>
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];
|
|
}
|